pub struct HypothesisYaml {
pub null_hypothesis: String,
pub alternative_hypothesis: String,
pub expected_outcome: String,
}Expand description
Hypothesis definition.
Fields§
§null_hypothesis: String§alternative_hypothesis: String§expected_outcome: StringTrait Implementations§
Source§impl Clone for HypothesisYaml
impl Clone for HypothesisYaml
Source§fn clone(&self) -> HypothesisYaml
fn clone(&self) -> HypothesisYaml
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 HypothesisYaml
impl Debug for HypothesisYaml
Source§impl<'de> Deserialize<'de> for HypothesisYaml
impl<'de> Deserialize<'de> for HypothesisYaml
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 HypothesisYaml
impl RefUnwindSafe for HypothesisYaml
impl Send for HypothesisYaml
impl Sync for HypothesisYaml
impl Unpin for HypothesisYaml
impl UnsafeUnpin for HypothesisYaml
impl UnwindSafe for HypothesisYaml
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