Trait Reader

Source
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§

Source

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.

Implementations on Foreign Types§

Source§

impl<R: Reader> Reader for &mut R

Implementors§