pub struct DummyBTreeMap<K, V> { /* private fields */ }
Expand description

stand in for std::collections::BTreeMap

Trait Implementations

source

fn get_entry<'c>(
    &'c mut self,
    key: &Q
) -> Entry<Self::Occupied<'c>, Self::Vacant<'c>>

source

fn remove_entry<'c>(
    &'c mut self,
    key: &Q
) -> (Entry<Self::Occupied<'c>, Self::Vacant<'c>>, Option<V>)

source

fn get_entry_with_key<'c>(
    &'c mut self,
    key: K
) -> EntryWithSearchKey<Self::Occupied<'c>, Self::Vacant<'c>, K>

source

fn get_entry_from_key<'c>(
    &'c mut self,
    key: K
) -> Entry<Self::Occupied<'c>, Self::Vacant<'c>>

source

fn insert_into_entry<'c>(
    &'c mut self,
    key: K,
    value: V
) -> (Entry<Self::Occupied<'c>, Self::Vacant<'c>>, Option<V>)

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.