[][src]Struct rustc_ap_rustc_data_structures::stable_set::StableSet

pub struct StableSet<T> { /* fields omitted */ }

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>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
where
    T: Ord
[src]

pub fn get<Q: ?Sized>(&self, value: &Q) -> Option<&T> where
    T: Borrow<Q>,
    Q: Hash + Eq
[src]

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]

Trait Implementations

impl<T: Clone> Clone for StableSet<T>[src]

impl<T> Debug for StableSet<T> where
    T: Eq + Hash + Debug
[src]

impl<T> Default for StableSet<T> where
    T: Eq + Hash
[src]

impl<T> Eq for StableSet<T> where
    T: Eq + Hash
[src]

impl<T> PartialEq<StableSet<T>> for StableSet<T> where
    T: Eq + Hash
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for StableSet<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for StableSet<T> where
    T: Send
[src]

impl<T> Sync for StableSet<T> where
    T: Sync
[src]

impl<T> Unpin for StableSet<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for StableSet<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,