Trait asynchronous_codec::Encoder
source · [−]pub trait Encoder {
type Item;
type Error: From<Error>;
fn encode(
&mut self,
item: Self::Item,
dst: &mut BytesMut
) -> Result<(), Self::Error>;
}
Expand description
Encoding of messages as bytes, for use with FramedWrite
.