pub struct HashThirtyTwoWay<H = DefaultHasher> { /* private fields */ }Expand description
32-way set associative caching based on the key’s Hash implementation.
See the Indices trait’s documentation for more on associativity.
Trait Implementations§
Source§impl<H: Clone> Clone for HashThirtyTwoWay<H>
impl<H: Clone> Clone for HashThirtyTwoWay<H>
Source§fn clone(&self) -> HashThirtyTwoWay<H>
fn clone(&self) -> HashThirtyTwoWay<H>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<H: Debug> Debug for HashThirtyTwoWay<H>
impl<H: Debug> Debug for HashThirtyTwoWay<H>
Source§impl<H: Default> Default for HashThirtyTwoWay<H>
impl<H: Default> Default for HashThirtyTwoWay<H>
Source§fn default() -> HashThirtyTwoWay<H>
fn default() -> HashThirtyTwoWay<H>
Returns the “default value” for a type. Read more
Source§impl<H: Hash> Hash for HashThirtyTwoWay<H>
impl<H: Hash> Hash for HashThirtyTwoWay<H>
Source§impl<T, C, H> Indices<T, C> for HashThirtyTwoWay<H>
impl<T, C, H> Indices<T, C> for HashThirtyTwoWay<H>
Source§impl<H: Ord> Ord for HashThirtyTwoWay<H>
impl<H: Ord> Ord for HashThirtyTwoWay<H>
Source§fn cmp(&self, other: &HashThirtyTwoWay<H>) -> Ordering
fn cmp(&self, other: &HashThirtyTwoWay<H>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<H: PartialEq> PartialEq for HashThirtyTwoWay<H>
impl<H: PartialEq> PartialEq for HashThirtyTwoWay<H>
Source§impl<H: PartialOrd> PartialOrd for HashThirtyTwoWay<H>
impl<H: PartialOrd> PartialOrd for HashThirtyTwoWay<H>
impl<H: Eq> Eq for HashThirtyTwoWay<H>
impl<H> StructuralPartialEq for HashThirtyTwoWay<H>
Auto Trait Implementations§
impl<H> Freeze for HashThirtyTwoWay<H>
impl<H> RefUnwindSafe for HashThirtyTwoWay<H>where
H: RefUnwindSafe,
impl<H> Send for HashThirtyTwoWay<H>where
H: Send,
impl<H> Sync for HashThirtyTwoWay<H>where
H: Sync,
impl<H> Unpin for HashThirtyTwoWay<H>where
H: Unpin,
impl<H> UnwindSafe for HashThirtyTwoWay<H>where
H: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more