pub trait SyncNineP: NineP {
// Provided methods
fn write_to<W: Write>(&self, w: &mut W) -> Result<()> { ... }
fn read_from<R: Read>(buf: &SharedBuf, r: &mut R) -> Result<Self> { ... }
}Expand description
Synchronous IO support for reading and writing 9p messages
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".