pub struct SchedulerStepStatus {
pub step_id: String,
pub status: String,
pub owner: Option<String>,
pub attempt: u64,
pub lease_until: Option<f64>,
pub last_error_type: Option<String>,
}Fields§
§step_id: String§status: String§owner: Option<String>§attempt: u64§lease_until: Option<f64>§last_error_type: Option<String>Trait Implementations§
Source§impl Clone for SchedulerStepStatus
impl Clone for SchedulerStepStatus
Source§fn clone(&self) -> SchedulerStepStatus
fn clone(&self) -> SchedulerStepStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SchedulerStepStatus
impl RefUnwindSafe for SchedulerStepStatus
impl Send for SchedulerStepStatus
impl Sync for SchedulerStepStatus
impl Unpin for SchedulerStepStatus
impl UnsafeUnpin for SchedulerStepStatus
impl UnwindSafe for SchedulerStepStatus
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