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]) -> Result<Vec<Self>, ReadError> { ... } }
type Inner: BatchData
fn write_batch(items: &[Self], bytes: &mut Vec<u8>)
fn read_batch(bytes: &[u8]) -> Result<Vec<Self>, ReadError>
impl Wrapper for Array
type Inner = usize
impl Wrapper for Nullable
type Inner = bool