Trait fluvio_protocol::core::DecoderVarInt

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

Required Methods§

source

fn decode_varint<T>(&mut self, src: &mut T) -> Result<(), Error>
where T: Buf,

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl DecoderVarInt for Option<Vec<u8>>

source§

fn decode_varint<T>(&mut self, src: &mut T) -> Result<(), Error>
where T: Buf,

source§

impl DecoderVarInt for i64

source§

fn decode_varint<T>(&mut self, src: &mut T) -> Result<(), Error>
where T: Buf,

source§

impl DecoderVarInt for Vec<u8>

source§

fn decode_varint<T>(&mut self, src: &mut T) -> Result<(), Error>
where T: Buf,

Implementors§