Struct aws_sdk_evidently::types::ExperimentReport
source · #[non_exhaustive]pub struct ExperimentReport {
pub metric_name: Option<String>,
pub treatment_name: Option<String>,
pub report_name: Option<ExperimentReportName>,
pub content: Option<String>,
}Expand description
A structure that contains results of an 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 that is analyzed in this experiment report.
treatment_name: Option<String>The name of the variation that this report pertains to.
report_name: Option<ExperimentReportName>The type of analysis used for this report.
content: Option<String>The content of the report.
Implementations§
source§impl ExperimentReport
impl ExperimentReport
sourcepub fn metric_name(&self) -> Option<&str>
pub fn metric_name(&self) -> Option<&str>
The name of the metric that is analyzed in this experiment report.
sourcepub fn treatment_name(&self) -> Option<&str>
pub fn treatment_name(&self) -> Option<&str>
The name of the variation that this report pertains to.
sourcepub fn report_name(&self) -> Option<&ExperimentReportName>
pub fn report_name(&self) -> Option<&ExperimentReportName>
The type of analysis used for this report.
source§impl ExperimentReport
impl ExperimentReport
sourcepub fn builder() -> ExperimentReportBuilder
pub fn builder() -> ExperimentReportBuilder
Creates a new builder-style object to manufacture ExperimentReport.
Trait Implementations§
source§impl Clone for ExperimentReport
impl Clone for ExperimentReport
source§fn clone(&self) -> ExperimentReport
fn clone(&self) -> ExperimentReport
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 ExperimentReport
impl Debug for ExperimentReport
source§impl PartialEq<ExperimentReport> for ExperimentReport
impl PartialEq<ExperimentReport> for ExperimentReport
source§fn eq(&self, other: &ExperimentReport) -> bool
fn eq(&self, other: &ExperimentReport) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExperimentReport
Auto Trait Implementations§
impl RefUnwindSafe for ExperimentReport
impl Send for ExperimentReport
impl Sync for ExperimentReport
impl Unpin for ExperimentReport
impl UnwindSafe for ExperimentReport
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