#[non_exhaustive]pub struct ProcessingStoppingCondition { /* private fields */ }
Expand description
Configures conditions under which the processing job should be stopped, such as how long the processing job has been running. After the condition is met, the processing job is stopped.
Implementations§
source§impl ProcessingStoppingCondition
impl ProcessingStoppingCondition
sourcepub fn max_runtime_in_seconds(&self) -> i32
pub fn max_runtime_in_seconds(&self) -> i32
Specifies the maximum runtime in seconds.
source§impl ProcessingStoppingCondition
impl ProcessingStoppingCondition
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ProcessingStoppingCondition
.
Trait Implementations§
source§impl Clone for ProcessingStoppingCondition
impl Clone for ProcessingStoppingCondition
source§fn clone(&self) -> ProcessingStoppingCondition
fn clone(&self) -> ProcessingStoppingCondition
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 ProcessingStoppingCondition
impl Debug for ProcessingStoppingCondition
source§impl PartialEq<ProcessingStoppingCondition> for ProcessingStoppingCondition
impl PartialEq<ProcessingStoppingCondition> for ProcessingStoppingCondition
source§fn eq(&self, other: &ProcessingStoppingCondition) -> bool
fn eq(&self, other: &ProcessingStoppingCondition) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.