Struct aws_sdk_evidently::types::ExperimentResultsData
source · #[non_exhaustive]pub struct ExperimentResultsData {
pub metric_name: Option<String>,
pub treatment_name: Option<String>,
pub result_stat: Option<ExperimentResultResponseType>,
pub values: Option<Vec<f64>>,
}Expand description
A structure that contains experiment results for one metric that is monitored in the experiment.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.metric_name: Option<String>The name of the metric.
treatment_name: Option<String>The treatment, or variation, that returned the values in this structure.
result_stat: Option<ExperimentResultResponseType>The experiment statistic that these results pertain to.
values: Option<Vec<f64>>The values for the metricName that were recorded in the experiment.
Implementations§
source§impl ExperimentResultsData
impl ExperimentResultsData
sourcepub fn metric_name(&self) -> Option<&str>
pub fn metric_name(&self) -> Option<&str>
The name of the metric.
sourcepub fn treatment_name(&self) -> Option<&str>
pub fn treatment_name(&self) -> Option<&str>
The treatment, or variation, that returned the values in this structure.
sourcepub fn result_stat(&self) -> Option<&ExperimentResultResponseType>
pub fn result_stat(&self) -> Option<&ExperimentResultResponseType>
The experiment statistic that these results pertain to.
source§impl ExperimentResultsData
impl ExperimentResultsData
sourcepub fn builder() -> ExperimentResultsDataBuilder
pub fn builder() -> ExperimentResultsDataBuilder
Creates a new builder-style object to manufacture ExperimentResultsData.
Trait Implementations§
source§impl Clone for ExperimentResultsData
impl Clone for ExperimentResultsData
source§fn clone(&self) -> ExperimentResultsData
fn clone(&self) -> ExperimentResultsData
Returns a copy 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 ExperimentResultsData
impl Debug for ExperimentResultsData
source§impl PartialEq<ExperimentResultsData> for ExperimentResultsData
impl PartialEq<ExperimentResultsData> for ExperimentResultsData
source§fn eq(&self, other: &ExperimentResultsData) -> bool
fn eq(&self, other: &ExperimentResultsData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExperimentResultsData
Auto Trait Implementations§
impl RefUnwindSafe for ExperimentResultsData
impl Send for ExperimentResultsData
impl Sync for ExperimentResultsData
impl Unpin for ExperimentResultsData
impl UnwindSafe for ExperimentResultsData
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