pub trait Writable {
    fn write_to(&self, writer: &mut impl Writer) -> Result<(), WriteError>
   where
        Self: Sized
; }
Expand description

Writes a type as bytes.

Required Methods

Writes self as bytes to a Writer.

Implementations on Foreign Types

Implementors