pub struct ProtocolMessageDecoder;
Trait Implementations§
source§impl Decoder for ProtocolMessageDecoder
impl Decoder for ProtocolMessageDecoder
§type Item = ProtocolMessage
type Item = ProtocolMessage
The type of decoded frames.
source§fn decode(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
fn decode(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
Attempts to decode a frame from the provided buffer of bytes. Read more