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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Writable for &[u8]

source§

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

Implementors§