pub struct DummyLinkedListVacantEntry<'c, V> { /* private fields */ }
Expand description
Vacant entry of a LinkedList.
This is either the beginning of the linked list, the end, or
Trait Implementations
sourceimpl<'c, V> KeyedVacantEntry<'c> for DummyLinkedListVacantEntry<'c, V>
impl<'c, V> KeyedVacantEntry<'c> for DummyLinkedListVacantEntry<'c, V>
sourceimpl<'c, V> NextOccupiedFromVacant<'c> for DummyLinkedListVacantEntry<'c, V>
impl<'c, V> NextOccupiedFromVacant<'c> for DummyLinkedListVacantEntry<'c, V>
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, V> PrevOccupiedFromVacant<'c> for DummyLinkedListVacantEntry<'c, V>
impl<'c, V> PrevOccupiedFromVacant<'c> for DummyLinkedListVacantEntry<'c, V>
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, V> VacantEntry<'c> for DummyLinkedListVacantEntry<'c, V>
impl<'c, V> VacantEntry<'c> for DummyLinkedListVacantEntry<'c, V>
Auto Trait Implementations
impl<'c, V> RefUnwindSafe for DummyLinkedListVacantEntry<'c, V> where
V: RefUnwindSafe,
impl<'c, V> Send for DummyLinkedListVacantEntry<'c, V> where
V: Send,
impl<'c, V> Sync for DummyLinkedListVacantEntry<'c, V> where
V: Sync,
impl<'c, V> Unpin for DummyLinkedListVacantEntry<'c, V>
impl<'c, V> !UnwindSafe for DummyLinkedListVacantEntry<'c, 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