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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".