pub trait GetLastEntry<V> {
    type Occupied<'c>: OccupiedEntry<'c, Value = V>
    where
        Self: 'c
; fn get_last_occupied<'c>(&'c mut self) -> Option<Self::Occupied<'c>>; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors