pub trait Flatten {
    fn flatten(&self) -> Vec<u8>;
}
Expand description

An object that can be ‘flattened’ down to a byte buffer.

Required methods

Return the ‘flattened’ form of self.

Implementations on Foreign Types

Implementors