Enum sanakirja_core::btree::put::Put[][src]

pub enum Put<'a, K: ?Sized, V: ?Sized> {
    Ok(Ok),
    Split {
        split_key: &'a K,
        split_value: &'a V,
        left: MutPage,
        right: MutPage,
        freed: u64,
    },
}

The result of an insertion, i.e. either an update or a split.

Variants

Ok(Ok)
Split

Fields of Split

split_key: &'a Ksplit_value: &'a Vleft: MutPageright: MutPagefreed: u64

Trait Implementations

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

Auto Trait Implementations

impl<'a, K, V> !Send for Put<'a, K, V>

impl<'a, K, V> !Sync for Put<'a, K, V>

impl<'a, K: ?Sized, V: ?Sized> Unpin for Put<'a, K, V>

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.