pub struct ProcessingStoppingCondition {
pub max_runtime_in_seconds: i64,
}
Expand description
Specifies a time limit for how long the processing job is allowed to run.
Fields§
§max_runtime_in_seconds: i64
Specifies the maximum runtime in seconds.
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 Default for ProcessingStoppingCondition
impl Default for ProcessingStoppingCondition
Source§fn default() -> ProcessingStoppingCondition
fn default() -> ProcessingStoppingCondition
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessingStoppingCondition
impl<'de> Deserialize<'de> for ProcessingStoppingCondition
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ProcessingStoppingCondition
Auto Trait Implementations§
impl Freeze for ProcessingStoppingCondition
impl RefUnwindSafe for ProcessingStoppingCondition
impl Send for ProcessingStoppingCondition
impl Sync for ProcessingStoppingCondition
impl Unpin for ProcessingStoppingCondition
impl UnwindSafe for ProcessingStoppingCondition
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