[][src]Struct stateright::util::HashableHashSet

pub struct HashableHashSet<V, S = RandomState>(_);

A HashSet wrapper that implements Hash by sorting pre-hashed entries and feeding those back into the passed-in Hasher.

Implementations

impl<V> HashableHashSet<V>[src]

pub fn new() -> HashableHashSet<V>[src]

impl<V, S> HashableHashSet<V, S>[src]

pub fn with_hasher(hasher: S) -> Self[src]

Trait Implementations

impl<V: Clone, S: Clone> Clone for HashableHashSet<V, S>[src]

impl<V: Debug, S> Debug for HashableHashSet<V, S>[src]

impl<V, S: Default> Default for HashableHashSet<V, S>[src]

impl<V, S> Deref for HashableHashSet<V, S>[src]

type Target = HashSet<V, S>

The resulting type after dereferencing.

impl<V, S> DerefMut for HashableHashSet<V, S>[src]

impl<V: Hash + Eq, S: BuildHasher> Eq for HashableHashSet<V, S>[src]

impl<V: Eq + Hash, S: BuildHasher + Default> FromIterator<V> for HashableHashSet<V, S>[src]

impl<V: Hash, S> Hash for HashableHashSet<V, S>[src]

impl<'a, V, S> IntoIterator for &'a HashableHashSet<V, S>[src]

type Item = &'a V

The type of the elements being iterated over.

type IntoIter = Iter<'a, V>

Which kind of iterator are we turning this into?

impl<V: Hash + Eq, S: BuildHasher> PartialEq<HashableHashSet<V, S>> for HashableHashSet<V, S>[src]

Auto Trait Implementations

impl<V, S> RefUnwindSafe for HashableHashSet<V, S> where
    S: RefUnwindSafe,
    V: RefUnwindSafe

impl<V, S> Send for HashableHashSet<V, S> where
    S: Send,
    V: Send

impl<V, S> Sync for HashableHashSet<V, S> where
    S: Sync,
    V: Sync

impl<V, S> Unpin for HashableHashSet<V, S> where
    S: Unpin,
    V: Unpin

impl<V, S> UnwindSafe for HashableHashSet<V, S> where
    S: UnwindSafe,
    V: UnwindSafe

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> 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>,