pub trait Emitable {
    fn buffer_len(&self) -> usize;
    fn emit(&self, buffer: &mut [u8]);
}
Expand description

A type that implements Emitable can be serialized.

Required Methods§

Return the length of the serialized data.

Serialize this types and write the serialized data into the given buffer.

Panic

This method panic if the buffer is not big enough. You must make sure the buffer is big enough before calling this method. You can use buffer_len() to check how big the storage needs to be.

Implementors§