Enum ordermap::Entry [−][src]
pub enum Entry<'a, K: 'a, V: 'a, S: 'a = RandomState> { Occupied(OccupiedEntry<'a, K, V, S>), Vacant(VacantEntry<'a, K, V, S>), }
FIXME: Remove dependence on the S parameter
(to match HashMap).
Variants
Occupied(OccupiedEntry<'a, K, V, S>)Vacant(VacantEntry<'a, K, V, S>)
Methods
impl<'a, K, V, S> Entry<'a, K, V, S>[src]
impl<'a, K, V, S> Entry<'a, K, V, S>pub fn or_insert(self, default: V) -> &'a mut V[src]
pub fn or_insert(self, default: V) -> &'a mut VComputes in O(1) time (amortized average).
pub fn or_insert_with<F>(self, call: F) -> &'a mut V where
F: FnOnce() -> V, [src]
pub fn or_insert_with<F>(self, call: F) -> &'a mut V where
F: FnOnce() -> V, Computes in O(1) time (amortized average).
pub fn key(&self) -> &K[src]
pub fn key(&self) -> &Kpub fn index(&self) -> usize[src]
pub fn index(&self) -> usize