pub trait GetRedBlackTreeReadOnlyData<'a> {
    // Required methods
    fn data(&self) -> &[u8] ;
    fn root_index(&self) -> DataIndex;
    fn max_index(&self) -> DataIndex;
}

Required Methods§

source

fn data(&self) -> &[u8]

source

fn root_index(&self) -> DataIndex

source

fn max_index(&self) -> DataIndex

Implementors§