Decoder

Trait Decoder 

Source
pub trait Decoder {
    type DecodeItem;
    type DecodeError: Debug;

    // Required method
    fn decode(
        &self,
        src: &mut BytesMut,
    ) -> Result<Option<Self::DecodeItem>, Self::DecodeError>;

    // Provided method
    fn decode_vec(
        &self,
        src: &mut BytesVec,
    ) -> Result<Option<Self::DecodeItem>, Self::DecodeError> { ... }
}
Expand description

Decoding of frames via buffers.

Required Associated Types§

Source

type DecodeItem

The type of decoded frames.

Source

type DecodeError: Debug

The type of unrecoverable frame decoding errors.

If an individual message is ill-formed but can be ignored without interfering with the processing of future messages, it may be more useful to report the failure as an Item.

Required Methods§

Source

fn decode( &self, src: &mut BytesMut, ) -> Result<Option<Self::DecodeItem>, Self::DecodeError>

Attempts to decode a frame from the provided buffer of bytes.

Provided Methods§

Source

fn decode_vec( &self, src: &mut BytesVec, ) -> Result<Option<Self::DecodeItem>, Self::DecodeError>

Attempts to decode a frame from the provided buffer of bytes.

Implementations on Foreign Types§

Source§

impl<T> Decoder for Rc<T>
where T: Decoder,

Implementors§