Trait Wrapper
tree_buf::internal::types
pub unsafe trait Wrapper: Sized { type Inner: BatchData; fn write_batch(items: &[Self], bytes: &mut Vec<u8>) { ... } fn read_batch(bytes: &[u8]) -> Vec<Self> { ... } }
type Inner: BatchData
fn write_batch(items: &[Self], bytes: &mut Vec<u8>)
fn read_batch(bytes: &[u8]) -> Vec<Self>
impl Wrapper for Array
type Inner = usize
impl Wrapper for Nullable
type Inner = bool