pub trait SerOutput {
// Required methods
fn extend_from_slice(&mut self, other: &[u8]);
fn push(&mut self, byte: u8);
fn reserve(&mut self, additional: usize);
}
Expand description
A trait for which can be used to store serialized output.