pub struct Significance {
pub test: SignificanceTest,
pub p_value: Option<f64>,
pub alpha: f64,
pub significant: bool,
pub baseline_samples: u32,
pub current_samples: u32,
pub ci_lower: Option<f64>,
pub ci_upper: Option<f64>,
}Fields§
§test: SignificanceTest§p_value: Option<f64>§alpha: f64§significant: bool§baseline_samples: u32§current_samples: u32§ci_lower: Option<f64>§ci_upper: Option<f64>Trait Implementations§
Source§impl Clone for Significance
impl Clone for Significance
Source§fn clone(&self) -> Significance
fn clone(&self) -> Significance
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 Significance
impl Debug for Significance
Source§impl<'de> Deserialize<'de> for Significance
impl<'de> Deserialize<'de> for Significance
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
Source§impl JsonSchema for Significance
impl JsonSchema for Significance
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for Significance
impl PartialEq for Significance
Source§impl Serialize for Significance
impl Serialize for Significance
impl StructuralPartialEq for Significance
Auto Trait Implementations§
impl Freeze for Significance
impl RefUnwindSafe for Significance
impl Send for Significance
impl Sync for Significance
impl Unpin for Significance
impl UnsafeUnpin for Significance
impl UnwindSafe for Significance
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