pub struct ExperimentOutcome {
pub experiment_ref: String,
pub treatment_samples: u64,
pub control_samples: u64,
pub treatment_metric: f64,
pub control_metric: f64,
pub improvement_pct: f64,
pub stopped_reason: Option<String>,
pub is_significant: bool,
}Expand description
Extended experiment result with holdout data.
Fields§
§experiment_ref: String[INTERNAL] Internal experiment reference.
treatment_samples: u64[INTERNAL] Treatment sample count.
control_samples: u64[INTERNAL] Control sample count.
treatment_metric: f64[INTERNAL] Treatment metric.
control_metric: f64[INTERNAL] Control metric.
improvement_pct: f64[INTERNAL] Improvement metric.
stopped_reason: Option<String>[INTERNAL] Internal experiment stop reason.
is_significant: bool[INTERNAL] Statistical significance state.
Trait Implementations§
Source§impl Clone for ExperimentOutcome
impl Clone for ExperimentOutcome
Source§fn clone(&self) -> ExperimentOutcome
fn clone(&self) -> ExperimentOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExperimentOutcome
impl Debug for ExperimentOutcome
Source§impl<'de> Deserialize<'de> for ExperimentOutcome
impl<'de> Deserialize<'de> for ExperimentOutcome
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 PartialEq for ExperimentOutcome
impl PartialEq for ExperimentOutcome
Source§impl Serialize for ExperimentOutcome
impl Serialize for ExperimentOutcome
impl StructuralPartialEq for ExperimentOutcome
Auto Trait Implementations§
impl Freeze for ExperimentOutcome
impl RefUnwindSafe for ExperimentOutcome
impl Send for ExperimentOutcome
impl Sync for ExperimentOutcome
impl Unpin for ExperimentOutcome
impl UnsafeUnpin for ExperimentOutcome
impl UnwindSafe for ExperimentOutcome
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