pub struct Analysis {
pub alpha: Option<f64>,
pub experiment: Option<String>,
pub exposed_total: Option<i32>,
pub metric: Option<String>,
pub results: Option<Vec<Outcome>>,
pub winner: Option<String>,
}Fields§
§alpha: Option<f64>the two-tailed threshold significance was judged at
experiment: Option<String>the experiment that was analysed
exposed_total: Option<i32>subjects enrolled across every arm
metric: Option<String>the event a conversion is counted from
results: Option<Vec<Outcome>>one row per declared arm, control first
winner: Option<String>ADVISORY: the significant, control-beating arm with the highest rate, else empty
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Analysis
impl<'de> Deserialize<'de> for Analysis
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 Analysis
Auto Trait Implementations§
impl Freeze for Analysis
impl RefUnwindSafe for Analysis
impl Send for Analysis
impl Sync for Analysis
impl Unpin for Analysis
impl UnsafeUnpin for Analysis
impl UnwindSafe for Analysis
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