pub trait Marshal {
    fn marshal(&self, buf: &mut &mut [u8]) -> Result<(), MarshalError>;
}

Required Methods

Implementations on Foreign Types

Implementors