pub struct Fingerprint(_);Expand description
A fingerprint
Implementations
sourceimpl Fingerprint
impl Fingerprint
Trait Implementations
sourceimpl Clone for Fingerprint
impl Clone for Fingerprint
sourcefn clone(&self) -> Fingerprint
fn clone(&self) -> Fingerprint
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for Fingerprint
impl Debug for Fingerprint
sourceimpl Default for Fingerprint
impl Default for Fingerprint
sourcefn default() -> Fingerprint
fn default() -> Fingerprint
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for Fingerprint
Available on crate feature serde only.
impl<'de> Deserialize<'de> for Fingerprint
serde only.sourcefn deserialize<D: Deserializer<'de>>(d: D) -> Result<Fingerprint, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Fingerprint, D::Error>
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Display for Fingerprint
impl Display for Fingerprint
sourceimpl<'a> From<&'a [u8]> for Fingerprint
impl<'a> From<&'a [u8]> for Fingerprint
sourcefn from(data: &'a [u8]) -> Fingerprint
fn from(data: &'a [u8]) -> Fingerprint
Converts to this type from the input type.
sourceimpl FromHex for Fingerprint
impl FromHex for Fingerprint
sourcefn from_byte_iter<I>(iter: I) -> Result<Self, Error> where
I: Iterator<Item = Result<u8, Error>> + ExactSizeIterator + DoubleEndedIterator,
fn from_byte_iter<I>(iter: I) -> Result<Self, Error> where
I: Iterator<Item = Result<u8, Error>> + ExactSizeIterator + DoubleEndedIterator,
Produces an object from a byte iterator.
sourceimpl FromStr for Fingerprint
impl FromStr for Fingerprint
sourceimpl Hash for Fingerprint
impl Hash for Fingerprint
sourceimpl<I> Index<I> for Fingerprint where
[u8]: Index<I>,
impl<I> Index<I> for Fingerprint where
[u8]: Index<I>,
sourceimpl LowerHex for Fingerprint
impl LowerHex for Fingerprint
sourceimpl Ord for Fingerprint
impl Ord for Fingerprint
sourcefn cmp(&self, other: &Fingerprint) -> Ordering
fn cmp(&self, other: &Fingerprint) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<Fingerprint> for Fingerprint
impl PartialEq<Fingerprint> for Fingerprint
sourcefn eq(&self, other: &Fingerprint) -> bool
fn eq(&self, other: &Fingerprint) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &Fingerprint) -> bool
fn ne(&self, other: &Fingerprint) -> bool
This method tests for !=.
sourceimpl PartialOrd<Fingerprint> for Fingerprint
impl PartialOrd<Fingerprint> for Fingerprint
sourcefn partial_cmp(&self, other: &Fingerprint) -> Option<Ordering>
fn partial_cmp(&self, other: &Fingerprint) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl Serialize for Fingerprint
Available on crate feature serde only.
impl Serialize for Fingerprint
serde only.impl Copy for Fingerprint
impl Eq for Fingerprint
impl StructuralEq for Fingerprint
impl StructuralPartialEq for Fingerprint
Auto Trait Implementations
impl RefUnwindSafe for Fingerprint
impl Send for Fingerprint
impl Sync for Fingerprint
impl Unpin for Fingerprint
impl UnwindSafe for Fingerprint
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more