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

pub enum Op<'a, T, 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>),
}

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

impl<'a, T: Debug, K: Debug + ?Sized, V: Debug + ?Sized> Debug for Op<'a, T, K, V>[src]

Auto Trait Implementations

impl<'a, T, K, V> !Send for Op<'a, T, K, V>

impl<'a, T, K, V> !Sync for Op<'a, T, K, V>

impl<'a, T, K: ?Sized, V: ?Sized> Unpin for Op<'a, T, K, V> where
    T: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.