[−][src]Struct rustc_ap_rustc_data_structures::stable_set::StableSet
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()
.
Implementations
impl<T: Hash + Eq> StableSet<T>
[src]
pub fn new() -> StableSet<T>
[src]
pub fn into_sorted_vector(self) -> Vec<T> where
T: Ord,
[src]
T: Ord,
pub fn get<Q: ?Sized>(&self, value: &Q) -> Option<&T> where
T: Borrow<Q>,
Q: Hash + Eq,
[src]
T: Borrow<Q>,
Q: Hash + Eq,
pub fn insert(&mut self, value: T) -> bool
[src]
pub fn remove<Q: ?Sized>(&mut self, value: &Q) -> bool where
T: Borrow<Q>,
Q: Hash + Eq,
[src]
T: Borrow<Q>,
Q: Hash + Eq,
Trait Implementations
impl<T: Clone> Clone for StableSet<T>
[src]
impl<T> Debug for StableSet<T> where
T: Eq + Hash + Debug,
[src]
T: Eq + Hash + Debug,
impl<T> Default for StableSet<T> where
T: Eq + Hash,
[src]
T: Eq + Hash,
impl<T> Eq for StableSet<T> where
T: Eq + Hash,
[src]
T: Eq + Hash,
impl<T> PartialEq<StableSet<T>> for StableSet<T> where
T: Eq + Hash,
[src]
T: Eq + Hash,
Auto Trait Implementations
impl<T> RefUnwindSafe for StableSet<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for StableSet<T> where
T: Send,
T: Send,
impl<T> Sync for StableSet<T> where
T: Sync,
T: Sync,
impl<T> Unpin for StableSet<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for StableSet<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[src]
impl<T> Erased for T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<E> SpecializationError for E
[src]
default fn not_found<S, T>(
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
[src]
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,