Enum sanakirja::btree::del::Op[][src]

pub enum Op<'a, T, K, V> where
    K: ?Sized,
    V: ?Sized
{ Merged { page: MutPage, freed: [u64; 2], marker: PhantomData<T>, }, Rebalanced { k: &'a K, v: &'a V, l: u64, r: u64, freed: [u64; 2], }, Put(Put<'a, K, V>), }
Expand description

Represents the result of a merge or rebalance, without touching the parent of the merge/rebalance.

Variants

Merged

Fields of Merged

page: MutPagefreed: [u64; 2]marker: PhantomData<T>
Rebalanced

Fields of Rebalanced

k: &'a Kv: &'a Vl: u64r: u64freed: [u64; 2]
Put(Put<'a, K, V>)

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.