pub enum FingerprintStyle {
DefPathHash,
HirId,
Unit,
Opaque,
}
Expand description
Describes the contents of the fingerprint generated by a given query.
Variants
DefPathHash
The fingerprint is actually a DefPathHash.
HirId
The fingerprint is actually a HirId.
Unit
Query key was ()
or equivalent, so fingerprint is just zero.
Opaque
Some opaque hash.
Implementations
sourceimpl FingerprintStyle
impl FingerprintStyle
pub fn reconstructible(self) -> bool
Trait Implementations
sourceimpl Clone for FingerprintStyle
impl Clone for FingerprintStyle
sourcefn clone(&self) -> FingerprintStyle
fn clone(&self) -> FingerprintStyle
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 moresourceimpl Debug for FingerprintStyle
impl Debug for FingerprintStyle
sourceimpl PartialEq<FingerprintStyle> for FingerprintStyle
impl PartialEq<FingerprintStyle> for FingerprintStyle
sourcefn eq(&self, other: &FingerprintStyle) -> bool
fn eq(&self, other: &FingerprintStyle) -> bool
impl Copy for FingerprintStyle
impl Eq for FingerprintStyle
impl StructuralEq for FingerprintStyle
impl StructuralPartialEq for FingerprintStyle
Auto Trait Implementations
impl RefUnwindSafe for FingerprintStyle
impl Send for FingerprintStyle
impl Sync for FingerprintStyle
impl Unpin for FingerprintStyle
impl UnwindSafe for FingerprintStyle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
DefPathHash
: 0 bytesHirId
: 0 bytesUnit
: 0 bytesOpaque
: 0 bytes