Trait asynchronous_codec::Decoder
source · [−]pub trait Decoder {
type Item;
type Error: From<Error>;
fn decode(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>;
fn decode_eof(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error> { ... }
}
Expand description
Decoding of frames via buffers, for use with FramedRead
.