Trait Writable

Source
pub trait Writable {
    // Required method
    fn write(self, writer: &mut impl Writer);
}

Required Methods§

Source

fn write(self, writer: &mut impl Writer)

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 Writable for &[u8]

Source§

fn write(self, writer: &mut impl Writer)

Implementors§