pub struct BenchmarkThresholdViolation {
pub measurement: String,
pub actual: f64,
pub threshold: f64,
pub comparison: String,
}Fields§
§measurement: String§actual: f64§threshold: f64§comparison: StringTrait Implementations§
Source§impl Clone for BenchmarkThresholdViolation
impl Clone for BenchmarkThresholdViolation
Source§fn clone(&self) -> BenchmarkThresholdViolation
fn clone(&self) -> BenchmarkThresholdViolation
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 BenchmarkThresholdViolation
impl Debug for BenchmarkThresholdViolation
Source§impl<'de> Deserialize<'de> for BenchmarkThresholdViolation
impl<'de> Deserialize<'de> for BenchmarkThresholdViolation
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
impl StructuralPartialEq for BenchmarkThresholdViolation
Auto Trait Implementations§
impl Freeze for BenchmarkThresholdViolation
impl RefUnwindSafe for BenchmarkThresholdViolation
impl Send for BenchmarkThresholdViolation
impl Sync for BenchmarkThresholdViolation
impl Unpin for BenchmarkThresholdViolation
impl UnsafeUnpin for BenchmarkThresholdViolation
impl UnwindSafe for BenchmarkThresholdViolation
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