pub trait DecoderWithSkipAhead: Decoder {
    type Handler: SkipAheadHandler;
    fn prepare_skip_ahead(&mut self, src: &mut BytesMut) -> Self::Handler;
}

Associated Types

Required methods

Implementors