pub struct RunTime(/* private fields */);Expand description
This keyword specifies the maximum run time for the job, in seconds. If the RUN_TIME is greater than zero, the job will exit cleanly before the specified time has elapsed, leaving as little unused time as possible. If RUN_TIME is less than or equal to zero, no time limit will be imposed on the run.
§Default
0
§Example
RUN_TIME : 360
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunTime
impl<'de> Deserialize<'de> for RunTime
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
Source§impl KeywordDisplay for RunTime
impl KeywordDisplay for RunTime
Source§impl Ord for RunTime
impl Ord for RunTime
Source§impl PartialOrd for RunTime
impl PartialOrd for RunTime
impl Copy for RunTime
impl Eq for RunTime
impl StructuralPartialEq for RunTime
Auto Trait Implementations§
impl Freeze for RunTime
impl RefUnwindSafe for RunTime
impl Send for RunTime
impl Sync for RunTime
impl Unpin for RunTime
impl UnwindSafe for RunTime
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