pub struct SchedulerReport {
pub job_id: String,
pub state: JobState,
pub history: Vec<RunRecord>,
pub last_skip_reason: Option<RunSkipReason>,
}Fields§
§job_id: String§state: JobState§history: Vec<RunRecord>§last_skip_reason: Option<RunSkipReason>Trait Implementations§
Source§impl Clone for SchedulerReport
impl Clone for SchedulerReport
Source§fn clone(&self) -> SchedulerReport
fn clone(&self) -> SchedulerReport
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 moreSource§impl Debug for SchedulerReport
impl Debug for SchedulerReport
Source§impl PartialEq for SchedulerReport
impl PartialEq for SchedulerReport
Source§fn eq(&self, other: &SchedulerReport) -> bool
fn eq(&self, other: &SchedulerReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SchedulerReport
impl StructuralPartialEq for SchedulerReport
Auto Trait Implementations§
impl Freeze for SchedulerReport
impl RefUnwindSafe for SchedulerReport
impl Send for SchedulerReport
impl Sync for SchedulerReport
impl Unpin for SchedulerReport
impl UnsafeUnpin for SchedulerReport
impl UnwindSafe for SchedulerReport
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