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

Associated Types

Required methods

Implementations on Foreign Types

Implementors