pub struct MappedStack<K: Eq + Hash, V> { /* private fields */ }
Expand description
A HashMap that can hold multiple values and fetch values in a LIFO manner. Rust’s MultiMap handles values in a FIFO manner.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<K, V> Freeze for MappedStack<K, V>
impl<K, V> RefUnwindSafe for MappedStack<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for MappedStack<K, V>
impl<K, V> Sync for MappedStack<K, V>
impl<K, V> Unpin for MappedStack<K, V>
impl<K, V> UnwindSafe for MappedStack<K, V>where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more