Struct rustc_data_structures::fingerprint::Fingerprint [−][src]
pub struct Fingerprint(_, _);
Methods
impl Fingerprint[src]
impl Fingerprintpub const ZERO: Fingerprint
ZERO: Fingerprint = Fingerprint(0, 0)
pub fn from_smaller_hash(hash: u64) -> Fingerprint[src]
pub fn from_smaller_hash(hash: u64) -> Fingerprintpub fn to_smaller_hash(&self) -> u64[src]
pub fn to_smaller_hash(&self) -> u64pub fn as_value(&self) -> (u64, u64)[src]
pub fn as_value(&self) -> (u64, u64)pub fn combine(self, other: Fingerprint) -> Fingerprint[src]
pub fn combine(self, other: Fingerprint) -> Fingerprintpub fn combine_commutative(self, other: Fingerprint) -> Fingerprint[src]
pub fn combine_commutative(self, other: Fingerprint) -> Fingerprintpub fn to_hex(&self) -> String[src]
pub fn to_hex(&self) -> Stringpub fn encode_opaque(&self, encoder: &mut Encoder) -> EncodeResult[src]
pub fn encode_opaque(&self, encoder: &mut Encoder) -> EncodeResultpub fn decode_opaque<'a>(
decoder: &mut Decoder<'a>
) -> Result<Fingerprint, String>[src]
pub fn decode_opaque<'a>(
decoder: &mut Decoder<'a>
) -> Result<Fingerprint, String>Trait Implementations
impl Eq for Fingerprint[src]
impl Eq for Fingerprintimpl PartialEq for Fingerprint[src]
impl PartialEq for Fingerprintfn eq(&self, other: &Fingerprint) -> bool[src]
fn eq(&self, other: &Fingerprint) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Fingerprint) -> bool[src]
fn ne(&self, other: &Fingerprint) -> boolThis method tests for !=.
impl Ord for Fingerprint[src]
impl Ord for Fingerprintfn cmp(&self, other: &Fingerprint) -> Ordering[src]
fn cmp(&self, other: &Fingerprint) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl PartialOrd for Fingerprint[src]
impl PartialOrd for Fingerprintfn partial_cmp(&self, other: &Fingerprint) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Fingerprint) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Fingerprint) -> bool[src]
fn lt(&self, other: &Fingerprint) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Fingerprint) -> bool[src]
fn le(&self, other: &Fingerprint) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Fingerprint) -> bool[src]
fn gt(&self, other: &Fingerprint) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Fingerprint) -> bool[src]
fn ge(&self, other: &Fingerprint) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Hash for Fingerprint[src]
impl Hash for Fingerprintfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for Fingerprint[src]
impl Debug for Fingerprintfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Fingerprint[src]
impl Clone for Fingerprintfn clone(&self) -> Fingerprint[src]
fn clone(&self) -> FingerprintReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for Fingerprint[src]
impl Copy for Fingerprintimpl Display for Fingerprint[src]
impl Display for Fingerprintfn fmt(&self, formatter: &mut Formatter) -> Result[src]
fn fmt(&self, formatter: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl StableHasherResult for Fingerprint[src]
impl StableHasherResult for Fingerprintfn finish(hasher: StableHasher<Self>) -> Self[src]
fn finish(hasher: StableHasher<Self>) -> Selfimpl<CTX> HashStable<CTX> for Fingerprint[src]
impl<CTX> HashStable<CTX> for Fingerprintfn hash_stable<W: StableHasherResult>(
&self,
_: &mut CTX,
hasher: &mut StableHasher<W>
)[src]
fn hash_stable<W: StableHasherResult>(
&self,
_: &mut CTX,
hasher: &mut StableHasher<W>
)impl UseSpecializedEncodable for Fingerprint[src]
impl UseSpecializedEncodable for Fingerprintfn default_encode<E>(&self, &mut E) -> Result<(), <E as Encoder>::Error> where
E: Encoder, [src]
fn default_encode<E>(&self, &mut E) -> Result<(), <E as Encoder>::Error> where
E: Encoder, Defaults to returning an error (see SpecializationError).
impl UseSpecializedDecodable for Fingerprint[src]
impl UseSpecializedDecodable for Fingerprintfn default_decode<D>(&mut D) -> Result<Self, <D as Decoder>::Error> where
D: Decoder, [src]
fn default_decode<D>(&mut D) -> Result<Self, <D as Decoder>::Error> where
D: Decoder, Defaults to returning an error (see SpecializationError).
impl SpecializedEncoder<Fingerprint> for Encoder[src]
impl SpecializedEncoder<Fingerprint> for Encoderfn specialized_encode(&mut self, f: &Fingerprint) -> Result<(), Self::Error>[src]
fn specialized_encode(&mut self, f: &Fingerprint) -> Result<(), Self::Error>Encode the value in a manner specific to this encoder state.
impl<'a> SpecializedDecoder<Fingerprint> for Decoder<'a>[src]
impl<'a> SpecializedDecoder<Fingerprint> for Decoder<'a>fn specialized_decode(&mut self) -> Result<Fingerprint, Self::Error>[src]
fn specialized_decode(&mut self) -> Result<Fingerprint, Self::Error>Decode a value in a manner specific to this decoder state.
Auto Trait Implementations
impl Send for Fingerprint
impl Send for Fingerprintimpl Sync for Fingerprint
impl Sync for Fingerprint