pub trait Packer {
    fn size(&self) -> usize;
    fn pack(&self) -> Vec<u8>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; fn unpack(&mut self, data: &[u8]) -> usize; }
Expand description

Required Methods

Implementations on Foreign Types

Implementors