#[non_exhaustive]pub struct RemediationExecutionStepBuilder { /* private fields */ }Expand description
A builder for RemediationExecutionStep.
Implementations§
source§impl RemediationExecutionStepBuilder
impl RemediationExecutionStepBuilder
sourcepub fn state(self, input: RemediationExecutionStepState) -> Self
pub fn state(self, input: RemediationExecutionStepState) -> Self
The valid status of the step.
sourcepub fn set_state(self, input: Option<RemediationExecutionStepState>) -> Self
pub fn set_state(self, input: Option<RemediationExecutionStepState>) -> Self
The valid status of the step.
sourcepub fn get_state(&self) -> &Option<RemediationExecutionStepState>
pub fn get_state(&self) -> &Option<RemediationExecutionStepState>
The valid status of the step.
sourcepub fn error_message(self, input: impl Into<String>) -> Self
pub fn error_message(self, input: impl Into<String>) -> Self
An error message if the step was interrupted during execution.
sourcepub fn set_error_message(self, input: Option<String>) -> Self
pub fn set_error_message(self, input: Option<String>) -> Self
An error message if the step was interrupted during execution.
sourcepub fn get_error_message(&self) -> &Option<String>
pub fn get_error_message(&self) -> &Option<String>
An error message if the step was interrupted during execution.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The time when the step started.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The time when the step started.
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The time when the step started.
sourcepub fn set_stop_time(self, input: Option<DateTime>) -> Self
pub fn set_stop_time(self, input: Option<DateTime>) -> Self
The time when the step stopped.
sourcepub fn get_stop_time(&self) -> &Option<DateTime>
pub fn get_stop_time(&self) -> &Option<DateTime>
The time when the step stopped.
sourcepub fn build(self) -> RemediationExecutionStep
pub fn build(self) -> RemediationExecutionStep
Consumes the builder and constructs a RemediationExecutionStep.
Trait Implementations§
source§impl Clone for RemediationExecutionStepBuilder
impl Clone for RemediationExecutionStepBuilder
source§fn clone(&self) -> RemediationExecutionStepBuilder
fn clone(&self) -> RemediationExecutionStepBuilder
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 Default for RemediationExecutionStepBuilder
impl Default for RemediationExecutionStepBuilder
source§fn default() -> RemediationExecutionStepBuilder
fn default() -> RemediationExecutionStepBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RemediationExecutionStepBuilder
impl PartialEq for RemediationExecutionStepBuilder
source§fn eq(&self, other: &RemediationExecutionStepBuilder) -> bool
fn eq(&self, other: &RemediationExecutionStepBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RemediationExecutionStepBuilder
Auto Trait Implementations§
impl Freeze for RemediationExecutionStepBuilder
impl RefUnwindSafe for RemediationExecutionStepBuilder
impl Send for RemediationExecutionStepBuilder
impl Sync for RemediationExecutionStepBuilder
impl Unpin for RemediationExecutionStepBuilder
impl UnwindSafe for RemediationExecutionStepBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.