pub trait Decoder {
type Item;
type Error: Debug;
// Required method
fn decode(
&self,
src: &mut BytesMut,
) -> Result<Option<Self::Item>, Self::Error>;
// Provided method
fn decode_vec(
&self,
src: &mut BytesVec,
) -> Result<Option<Self::Item>, Self::Error> { ... }
}
Expand description
Decoding of frames via buffers.