Struct multimap::OccupiedEntry [−][src]
pub struct OccupiedEntry<'a, K: 'a, V: 'a> { /* fields omitted */ }Expand description
A view into a single occupied location in a MultiMap.
Implementations
Gets a reference to the first item in value in the vector corresponding to entry.
Gets a reference to the values (vector) corresponding to entry.
Gets a mut reference to the first item in value in the vector corresponding to entry.
Gets a mut reference to the values (vector) corresponding to entry.
Converts the OccupiedEntry into a mutable reference to the first item in value in the entry with a lifetime bound to the map itself
Converts the OccupiedEntry into a mutable reference to the values (vector) in the entry with a lifetime bound to the map itself
Extends the existing vector with the specified values.