pub struct MetricCounts {
pub stale_retrievals: u64,
pub unsupported_admissions: u64,
pub contradictions_preserved: u64,
pub temporal_correct: u64,
pub namespace_leakage: u64,
pub replay_equivalent: bool,
}Fields§
§stale_retrievals: u64§unsupported_admissions: u64§contradictions_preserved: u64§temporal_correct: u64§namespace_leakage: u64§replay_equivalent: boolTrait Implementations§
Source§impl Clone for MetricCounts
impl Clone for MetricCounts
Source§fn clone(&self) -> MetricCounts
fn clone(&self) -> MetricCounts
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 MetricCounts
impl Debug for MetricCounts
Source§impl Default for MetricCounts
impl Default for MetricCounts
Source§fn default() -> MetricCounts
fn default() -> MetricCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetricCounts
impl<'de> Deserialize<'de> for MetricCounts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MetricCounts
impl RefUnwindSafe for MetricCounts
impl Send for MetricCounts
impl Sync for MetricCounts
impl Unpin for MetricCounts
impl UnsafeUnpin for MetricCounts
impl UnwindSafe for MetricCounts
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