pub struct SyncStep {
pub name: String,
pub throw_tolerant: Option<bool>,
/* private fields */
}
Expand description
Represents a synchronous step in a job.
Fields§
§name: String
The name of the step.
throw_tolerant: Option<bool>
Indicates whether the step is tolerant to thrown exceptions.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncStep
impl !RefUnwindSafe for SyncStep
impl !Sync for SyncStep
impl Unpin for SyncStep
impl !UnwindSafe for SyncStep
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