pub trait DecoderVarInt {
    fn decode_varint<T>(&mut self, src: &mut T) -> Result<(), Error>
    where
        T: Buf
; }

Required Methods§

Implementations on Foreign Types§

Implementors§