Trait BinableDecoder

Source
pub trait BinableDecoder {
    type Output;

    // Required method
    fn handle(&self, r: Box<&mut dyn Read>) -> Self::Output;
}
Expand description

Reads binable (bin_prot-encoded) value from a stream, handles it and returns a result.

Required Associated Types§

Required Methods§

Source

fn handle(&self, r: Box<&mut dyn Read>) -> Self::Output

Implementors§