pub struct FalsificationEvalResult {
pub criterion_id: String,
pub passed: bool,
pub actual_value: f64,
pub threshold: f64,
pub message: String,
}Expand description
Result of falsification evaluation
Fields§
§criterion_id: StringCriterion ID
passed: boolWhether criterion passed
actual_value: f64Actual value measured
threshold: f64Threshold from criterion
message: StringMessage explaining result
Trait Implementations§
Source§impl Clone for FalsificationEvalResult
impl Clone for FalsificationEvalResult
Source§fn clone(&self) -> FalsificationEvalResult
fn clone(&self) -> FalsificationEvalResult
Returns a duplicate of the value. Read more
1.0.0 · 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 FalsificationEvalResult
impl RefUnwindSafe for FalsificationEvalResult
impl Send for FalsificationEvalResult
impl Sync for FalsificationEvalResult
impl Unpin for FalsificationEvalResult
impl UnsafeUnpin for FalsificationEvalResult
impl UnwindSafe for FalsificationEvalResult
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