pub struct IdentityHasher(/* private fields */);
Trait Implementations§
Source§impl Clone for IdentityHasher
impl Clone for IdentityHasher
Source§fn clone(&self) -> IdentityHasher
fn clone(&self) -> IdentityHasher
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 Debug for IdentityHasher
impl Debug for IdentityHasher
Source§impl Default for IdentityHasher
impl Default for IdentityHasher
Source§fn default() -> IdentityHasher
fn default() -> IdentityHasher
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IdentityHasher
impl<'de> Deserialize<'de> for IdentityHasher
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for IdentityHasher
impl Hash for IdentityHasher
Source§impl Hasher for IdentityHasher
impl Hasher for IdentityHasher
Source§fn write_u128(&mut self, i: u128)
fn write_u128(&mut self, i: u128)
Writes a single
u128
into this hasher.Source§fn write_usize(&mut self, i: usize)
fn write_usize(&mut self, i: usize)
Writes a single
usize
into this hasher.Source§fn write_i128(&mut self, i: i128)
fn write_i128(&mut self, i: i128)
Writes a single
i128
into this hasher.Source§fn write_isize(&mut self, i: isize)
fn write_isize(&mut self, i: isize)
Writes a single
isize
into this hasher.Source§fn write_length_prefix(&mut self, len: usize)
fn write_length_prefix(&mut self, len: usize)
🔬This is a nightly-only experimental API. (
hasher_prefixfree_extras
)Writes a length prefix into this hasher, as part of being prefix-free. Read more
Source§impl Ord for IdentityHasher
impl Ord for IdentityHasher
Source§fn cmp(&self, other: &IdentityHasher) -> Ordering
fn cmp(&self, other: &IdentityHasher) -> 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 PartialEq for IdentityHasher
impl PartialEq for IdentityHasher
Source§impl PartialOrd for IdentityHasher
impl PartialOrd for IdentityHasher
Source§impl Serialize for IdentityHasher
impl Serialize for IdentityHasher
impl Copy for IdentityHasher
impl Eq for IdentityHasher
impl StructuralPartialEq for IdentityHasher
Auto Trait Implementations§
impl Freeze for IdentityHasher
impl RefUnwindSafe for IdentityHasher
impl Send for IdentityHasher
impl Sync for IdentityHasher
impl Unpin for IdentityHasher
impl UnwindSafe for IdentityHasher
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FromQuery for Twhere
T: DeserializeOwned,
impl<T> FromQuery for Twhere
T: DeserializeOwned,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more