Struct hash32::BuildHasherDefault
source · pub struct BuildHasherDefault<H> { /* private fields */ }
Expand description
A copy of core::hash::BuildHasherDefault
, but with a const constructor.
This will eventually be deprecated once the version in core
becomes const-constructible
(presumably using const Default
).
Implementations§
source§impl<H> BuildHasherDefault<H>
impl<H> BuildHasherDefault<H>
Trait Implementations§
source§impl<H> BuildHasher for BuildHasherDefault<H>
impl<H> BuildHasher for BuildHasherDefault<H>
source§impl<H> Clone for BuildHasherDefault<H>
impl<H> Clone for BuildHasherDefault<H>
source§impl<H> Debug for BuildHasherDefault<H>
impl<H> Debug for BuildHasherDefault<H>
source§impl<H> Default for BuildHasherDefault<H>
impl<H> Default for BuildHasherDefault<H>
source§impl<H> PartialEq for BuildHasherDefault<H>
impl<H> PartialEq for BuildHasherDefault<H>
source§fn eq(&self, _other: &BuildHasherDefault<H>) -> bool
fn eq(&self, _other: &BuildHasherDefault<H>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<H> Eq for BuildHasherDefault<H>
Auto Trait Implementations§
impl<H> Freeze for BuildHasherDefault<H>
impl<H> RefUnwindSafe for BuildHasherDefault<H>where
H: RefUnwindSafe,
impl<H> Send for BuildHasherDefault<H>where
H: Send,
impl<H> Sync for BuildHasherDefault<H>where
H: Sync,
impl<H> Unpin for BuildHasherDefault<H>where
H: Unpin,
impl<H> UnwindSafe for BuildHasherDefault<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