pub trait BinableDecoder { type Output; // Required method fn handle(&self, r: Box<&mut dyn Read>) -> Self::Output; }
Reads binable (bin_prot-encoded) value from a stream, handles it and returns a result.