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

Required Methods

Implementors