pub enum ObservationKind {
Read,
Missing,
Listing,
Policy,
Epoch,
Custom(&'static str),
}Expand description
The reason a query depends on a key.
Variants§
Read
A query read another query’s value.
Missing
A query observed that a name was absent.
Listing
A query observed a directory or collection listing.
Policy
A query observed policy or authority state.
Epoch
A query observed an external backend epoch.
Custom(&'static str)
A domain-specific observation class.
Trait Implementations§
Source§impl Clone for ObservationKind
impl Clone for ObservationKind
Source§fn clone(&self) -> ObservationKind
fn clone(&self) -> ObservationKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ObservationKind
impl Debug for ObservationKind
impl Eq for ObservationKind
Source§impl Hash for ObservationKind
impl Hash for ObservationKind
Source§impl Ord for ObservationKind
impl Ord for ObservationKind
Source§fn cmp(&self, other: &ObservationKind) -> Ordering
fn cmp(&self, other: &ObservationKind) -> Ordering
1.21.0 (const: unstable) · 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 ObservationKind
impl PartialEq for ObservationKind
Source§impl PartialOrd for ObservationKind
impl PartialOrd for ObservationKind
impl StructuralPartialEq for ObservationKind
Auto Trait Implementations§
impl Freeze for ObservationKind
impl RefUnwindSafe for ObservationKind
impl Send for ObservationKind
impl Sync for ObservationKind
impl Unpin for ObservationKind
impl UnsafeUnpin for ObservationKind
impl UnwindSafe for ObservationKind
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> FingerprintValue for Twhere
T: Hash,
impl<T> FingerprintValue for Twhere
T: Hash,
Source§fn incremental_fingerprint(&self) -> ValueFingerprint
fn incremental_fingerprint(&self) -> ValueFingerprint
Returns a compact value identity for incremental cutoff.