Struct rustc_ap_rustc_data_structures::stable_map::StableMap [−][src]
pub struct StableMap<K, V> { /* fields omitted */ }
Expand description
A deterministic wrapper around FxHashMap that does not provide iteration support.
It supports insert, remove, get and get_mut functions from FxHashMap.
It also allows to convert hashmap to a sorted vector with the method into_sorted_vector()
.
Implementations
Trait Implementations
Auto Trait Implementations
impl<K, V> RefUnwindSafe for StableMap<K, V> where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> UnwindSafe for StableMap<K, V> where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key
and return true
if they are equal.
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V