pub struct MetricThresholds {
pub minimum_pass_rate: f64,
pub maximum_stale_retrievals: u64,
pub maximum_unsupported_admissions: u64,
pub maximum_namespace_leakage: u64,
pub require_replay_equivalence: bool,
}Fields§
§minimum_pass_rate: f64§maximum_stale_retrievals: u64§maximum_unsupported_admissions: u64§maximum_namespace_leakage: u64§require_replay_equivalence: boolImplementations§
Trait Implementations§
Source§impl Clone for MetricThresholds
impl Clone for MetricThresholds
Source§fn clone(&self) -> MetricThresholds
fn clone(&self) -> MetricThresholds
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 MetricThresholds
impl Debug for MetricThresholds
Source§impl<'de> Deserialize<'de> for MetricThresholds
impl<'de> Deserialize<'de> for MetricThresholds
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 MetricThresholds
impl RefUnwindSafe for MetricThresholds
impl Send for MetricThresholds
impl Sync for MetricThresholds
impl Unpin for MetricThresholds
impl UnsafeUnpin for MetricThresholds
impl UnwindSafe for MetricThresholds
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