pub trait GetRedBlackTreeData<'a> {
    // Required methods
    fn data(&mut self) -> &mut [u8] ;
    fn set_root_index(&mut self, root_index: DataIndex);
}

Required Methods§

source

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

source

fn set_root_index(&mut self, root_index: DataIndex)

Implementors§

source§

impl<'a, V: Payload> GetRedBlackTreeData<'a> for LLRB<'a, V>

source§

impl<'a, V: Payload> GetRedBlackTreeData<'a> for RedBlackTree<'a, V>