Struct rustc_data_structures::stable_set::StableSet [−][src]
pub struct StableSet<T> {
base: FxHashSet<T>,
}
Expand description
A deterministic wrapper around FxHashSet that does not provide iteration support.
It supports insert, remove, get functions from FxHashSet.
It also allows to convert hashset to a sorted vector with the method into_sorted_vector()
.
Fields
base: FxHashSet<T>
Implementations
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for StableSet<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for StableSet<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes