pub struct FalsificationCriterionYaml {
pub id: String,
pub name: String,
pub condition: String,
pub threshold: Option<f64>,
pub severity: String,
pub interpretation: String,
}Expand description
Single falsification criterion.
Fields§
§id: String§name: String§condition: String§threshold: Option<f64>§severity: String§interpretation: StringTrait Implementations§
Source§impl Clone for FalsificationCriterionYaml
impl Clone for FalsificationCriterionYaml
Source§fn clone(&self) -> FalsificationCriterionYaml
fn clone(&self) -> FalsificationCriterionYaml
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 moreSource§impl Debug for FalsificationCriterionYaml
impl Debug for FalsificationCriterionYaml
Source§impl<'de> Deserialize<'de> for FalsificationCriterionYaml
impl<'de> Deserialize<'de> for FalsificationCriterionYaml
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 FalsificationCriterionYaml
impl RefUnwindSafe for FalsificationCriterionYaml
impl Send for FalsificationCriterionYaml
impl Sync for FalsificationCriterionYaml
impl Unpin for FalsificationCriterionYaml
impl UnsafeUnpin for FalsificationCriterionYaml
impl UnwindSafe for FalsificationCriterionYaml
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