pub trait EncodeInto: Encode {
    // Provided method
    fn encode_into<T: AsMut<[u8]> + Default, H: Hasher>(&self) -> T { ... }
}

Provided Methods§

source

fn encode_into<T: AsMut<[u8]> + Default, H: Hasher>(&self) -> T

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Encode> EncodeInto for T