[][src]Struct associative_cache::indices::HashEightWay

pub struct HashEightWay<H = DefaultHasher> { /* fields omitted */ }

Eight-way set associative caching based on the key's Hash implementation.

See the Indices trait's documentation for more on associativity.

Trait Implementations

impl<T: ?Sized, C, H> Indices<T, C> for HashEightWay<H> where
    T: Hash,
    C: Capacity,
    H: Hasher + Default
[src]

type Indices = Range<usize>

The iterator over indices within the range 0..C::CAPACITY yielding the slots in the cache where the key's entry might reside. Read more

impl<H: Clone> Clone for HashEightWay<H>[src]

impl<H: Default> Default for HashEightWay<H>[src]

impl<H: PartialOrd> PartialOrd<HashEightWay<H>> for HashEightWay<H>[src]

impl<H: Eq> Eq for HashEightWay<H>[src]

impl<H: Ord> Ord for HashEightWay<H>[src]

impl<H: PartialEq> PartialEq<HashEightWay<H>> for HashEightWay<H>[src]

impl<H: Debug> Debug for HashEightWay<H>[src]

impl<H: Hash> Hash for HashEightWay<H>[src]

Auto Trait Implementations

impl<H> Send for HashEightWay<H> where
    H: Send

impl<H> Sync for HashEightWay<H> where
    H: Sync

impl<H> Unpin for HashEightWay<H> where
    H: Unpin

impl<H> RefUnwindSafe for HashEightWay<H> where
    H: RefUnwindSafe

impl<H> UnwindSafe for HashEightWay<H> where
    H: UnwindSafe

Blanket Implementations

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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