#[non_exhaustive]pub struct ExperimentTemplateActionBuilder { /* private fields */ }Expand description
A builder for ExperimentTemplateAction.
Implementations§
source§impl ExperimentTemplateActionBuilder
impl ExperimentTemplateActionBuilder
sourcepub fn set_action_id(self, input: Option<String>) -> Self
pub fn set_action_id(self, input: Option<String>) -> Self
The ID of the action.
sourcepub fn get_action_id(&self) -> &Option<String>
pub fn get_action_id(&self) -> &Option<String>
The ID of the action.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description for the action.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description for the action.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description for the action.
sourcepub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to parameters.
To override the contents of this collection use set_parameters.
The parameters for the action.
sourcepub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
The parameters for the action.
sourcepub fn get_parameters(&self) -> &Option<HashMap<String, String>>
pub fn get_parameters(&self) -> &Option<HashMap<String, String>>
The parameters for the action.
sourcepub fn targets(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn targets(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to targets.
To override the contents of this collection use set_targets.
The targets for the action.
sourcepub fn set_targets(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_targets(self, input: Option<HashMap<String, String>>) -> Self
The targets for the action.
sourcepub fn start_after(self, input: impl Into<String>) -> Self
pub fn start_after(self, input: impl Into<String>) -> Self
Appends an item to start_after.
To override the contents of this collection use set_start_after.
The name of the action that must be completed before the current action starts.
sourcepub fn set_start_after(self, input: Option<Vec<String>>) -> Self
pub fn set_start_after(self, input: Option<Vec<String>>) -> Self
The name of the action that must be completed before the current action starts.
sourcepub fn get_start_after(&self) -> &Option<Vec<String>>
pub fn get_start_after(&self) -> &Option<Vec<String>>
The name of the action that must be completed before the current action starts.
sourcepub fn build(self) -> ExperimentTemplateAction
pub fn build(self) -> ExperimentTemplateAction
Consumes the builder and constructs a ExperimentTemplateAction.
Trait Implementations§
source§impl Clone for ExperimentTemplateActionBuilder
impl Clone for ExperimentTemplateActionBuilder
source§fn clone(&self) -> ExperimentTemplateActionBuilder
fn clone(&self) -> ExperimentTemplateActionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ExperimentTemplateActionBuilder
impl Default for ExperimentTemplateActionBuilder
source§fn default() -> ExperimentTemplateActionBuilder
fn default() -> ExperimentTemplateActionBuilder
source§impl PartialEq for ExperimentTemplateActionBuilder
impl PartialEq for ExperimentTemplateActionBuilder
source§fn eq(&self, other: &ExperimentTemplateActionBuilder) -> bool
fn eq(&self, other: &ExperimentTemplateActionBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExperimentTemplateActionBuilder
Auto Trait Implementations§
impl Freeze for ExperimentTemplateActionBuilder
impl RefUnwindSafe for ExperimentTemplateActionBuilder
impl Send for ExperimentTemplateActionBuilder
impl Sync for ExperimentTemplateActionBuilder
impl Unpin for ExperimentTemplateActionBuilder
impl UnwindSafe for ExperimentTemplateActionBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more