pub trait AvltrieeUpdate<T, I, A>: AsMut<Avltriee<T, I, A>> + AvltrieeOrd<T, I, A>
where I: ?Sized,
{ // Required methods fn convert_value(&mut self, input: &I) -> T; fn delete_before_update(&mut self, row: NonZero<u32>); }

Required Methods§

fn convert_value(&mut self, input: &I) -> T

fn delete_before_update(&mut self, row: NonZero<u32>)

Implementors§

source§

impl AvltrieeUpdate<DataAddress, [u8], IdxFileAllocator<DataAddress>> for IdxBinary

§

impl<T, A> AvltrieeUpdate<T, T, A> for Avltriee<T, T, A>
where T: Ord + Clone, A: AvltrieeAllocator<T>,