Enum better_btree::NodeInsertResult[][src]

#[must_use]pub enum NodeInsertResult<K, V> where
    K: Ord
{ Split { new_node: Box<Node<K, V>>, bubble: (K, V), }, Existed(V), Ok, }

Variants

Split

Fields of Split

new_node: Box<Node<K, V>>bubble: (K, V)
Existed(V)
Ok

Trait Implementations

impl<K: Debug, V: Debug> Debug for NodeInsertResult<K, V> where
    K: Ord
[src]

Auto Trait Implementations

impl<K, V> RefUnwindSafe for NodeInsertResult<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

impl<K, V> !Send for NodeInsertResult<K, V>

impl<K, V> !Sync for NodeInsertResult<K, V>

impl<K, V> Unpin for NodeInsertResult<K, V> where
    K: Unpin,
    V: Unpin

impl<K, V> UnwindSafe for NodeInsertResult<K, V> where
    K: RefUnwindSafe + UnwindSafe,
    V: RefUnwindSafe + UnwindSafe

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.