Trait WriteBox

Source
pub trait WriteBox<T>: Sized {
    // Required method
    fn write_box(&self, _: T) -> Result<u64>;
}

Required Methods§

Source

fn write_box(&self, _: T) -> Result<u64>

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.

Implementors§