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

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

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

Variants

Ok(Ok)

Tuple Fields

0: Ok

Split

Fields

split_key: &'a K
split_value: &'a V
left: MutPage
right: MutPage
freed: u64

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.