pub struct DummyBTreeMapVacantEntry<'c, K, V> { /* private fields */ }
Expand description
Vacant entry of a BTreeMap.
This contains the key used to search for this entry, and can read that key, or insert into the BTreeMap at that key, when provided a value.
Trait Implementations
sourceimpl<'c, K, V> KeyedVacantEntry<'c> for DummyBTreeMapVacantEntry<'c, K, V>
impl<'c, K, V> KeyedVacantEntry<'c> for DummyBTreeMapVacantEntry<'c, K, V>
sourceimpl<'c, K, V> NextOccupiedFromVacant<'c> for DummyBTreeMapVacantEntry<'c, K, V> where
K: Ord,
impl<'c, K, V> NextOccupiedFromVacant<'c> for DummyBTreeMapVacantEntry<'c, K, V> where
K: Ord,
sourcefn get_next_occupied(self) -> Option<Self::Occupied>
fn get_next_occupied(self) -> Option<Self::Occupied>
get the next occupied entry after this one.
sourceimpl<'c, K, V> PrevOccupiedFromVacant<'c> for DummyBTreeMapVacantEntry<'c, K, V> where
K: Ord,
impl<'c, K, V> PrevOccupiedFromVacant<'c> for DummyBTreeMapVacantEntry<'c, K, V> where
K: Ord,
sourcefn get_prev_occupied(self) -> Option<Self::Occupied>
fn get_prev_occupied(self) -> Option<Self::Occupied>
get the previous occupied entry after this one.
sourceimpl<'c, K, V> VacantEntry<'c> for DummyBTreeMapVacantEntry<'c, K, V>
impl<'c, K, V> VacantEntry<'c> for DummyBTreeMapVacantEntry<'c, K, V>
Auto Trait Implementations
impl<'c, K, V> RefUnwindSafe for DummyBTreeMapVacantEntry<'c, K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'c, K, V> Send for DummyBTreeMapVacantEntry<'c, K, V> where
K: Send,
V: Send,
impl<'c, K, V> Sync for DummyBTreeMapVacantEntry<'c, K, V> where
K: Sync,
V: Sync,
impl<'c, K, V> Unpin for DummyBTreeMapVacantEntry<'c, K, V>
impl<'c, K, V> !UnwindSafe for DummyBTreeMapVacantEntry<'c, K, V>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more