pub enum CacheMissReason {
Cold,
DistinctKey,
MethodVersion,
SchemaFingerprint,
SchemaVersion,
Surface,
Visibility,
}Expand description
CacheMissReason
Stable cache miss reason buckets for cache identities that already have a scoped entity path. These categories explain why a lookup missed without exposing query text, field names, or schema hashes in the metrics report.
Variants§
Trait Implementations§
Source§impl Clone for CacheMissReason
impl Clone for CacheMissReason
Source§fn clone(&self) -> CacheMissReason
fn clone(&self) -> CacheMissReason
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 moreimpl Copy for CacheMissReason
Source§impl Debug for CacheMissReason
impl Debug for CacheMissReason
impl Eq for CacheMissReason
Source§impl PartialEq for CacheMissReason
impl PartialEq for CacheMissReason
Source§fn eq(&self, other: &CacheMissReason) -> bool
fn eq(&self, other: &CacheMissReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CacheMissReason
Auto Trait Implementations§
impl Freeze for CacheMissReason
impl RefUnwindSafe for CacheMissReason
impl Send for CacheMissReason
impl Sync for CacheMissReason
impl Unpin for CacheMissReason
impl UnsafeUnpin for CacheMissReason
impl UnwindSafe for CacheMissReason
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