#[non_exhaustive]pub struct ExperimentExecutionBuilder { /* private fields */ }Expand description
A builder for ExperimentExecution.
Implementations§
source§impl ExperimentExecutionBuilder
impl ExperimentExecutionBuilder
sourcepub fn started_time(self, input: DateTime) -> Self
pub fn started_time(self, input: DateTime) -> Self
The date and time that the experiment started.
sourcepub fn set_started_time(self, input: Option<DateTime>) -> Self
pub fn set_started_time(self, input: Option<DateTime>) -> Self
The date and time that the experiment started.
sourcepub fn ended_time(self, input: DateTime) -> Self
pub fn ended_time(self, input: DateTime) -> Self
The date and time that the experiment ended.
sourcepub fn set_ended_time(self, input: Option<DateTime>) -> Self
pub fn set_ended_time(self, input: Option<DateTime>) -> Self
The date and time that the experiment ended.
sourcepub fn build(self) -> ExperimentExecution
pub fn build(self) -> ExperimentExecution
Consumes the builder and constructs a ExperimentExecution.
Trait Implementations§
source§impl Clone for ExperimentExecutionBuilder
impl Clone for ExperimentExecutionBuilder
source§fn clone(&self) -> ExperimentExecutionBuilder
fn clone(&self) -> ExperimentExecutionBuilder
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 ExperimentExecutionBuilder
impl Debug for ExperimentExecutionBuilder
source§impl Default for ExperimentExecutionBuilder
impl Default for ExperimentExecutionBuilder
source§fn default() -> ExperimentExecutionBuilder
fn default() -> ExperimentExecutionBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ExperimentExecutionBuilder> for ExperimentExecutionBuilder
impl PartialEq<ExperimentExecutionBuilder> for ExperimentExecutionBuilder
source§fn eq(&self, other: &ExperimentExecutionBuilder) -> bool
fn eq(&self, other: &ExperimentExecutionBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.