pub struct EvidenceMetric {
pub name: String,
pub value: f64,
pub threshold: f64,
pub unit: String,
}Expand description
A numeric metric with threshold comparison.
Fields§
§name: String§value: f64§threshold: f64§unit: StringTrait Implementations§
Source§impl Clone for EvidenceMetric
impl Clone for EvidenceMetric
Source§fn clone(&self) -> EvidenceMetric
fn clone(&self) -> EvidenceMetric
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 moreAuto Trait Implementations§
impl Freeze for EvidenceMetric
impl RefUnwindSafe for EvidenceMetric
impl Send for EvidenceMetric
impl Sync for EvidenceMetric
impl Unpin for EvidenceMetric
impl UnsafeUnpin for EvidenceMetric
impl UnwindSafe for EvidenceMetric
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