pub trait Reader: Read {
// Provided method
fn read_struct<T: IntoBytes + FromBytes>(&mut self) -> Result<T> { ... }
}Expand description
A trait for reading from the underlying FUSE endpoint.
Provided Methods§
fn read_struct<T: IntoBytes + FromBytes>(&mut self) -> Result<T>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.