pub struct ScheduleRunJob {
pub run_id: String,
pub schedule_id: String,
pub schedule_name: String,
pub run_config: ScheduleRunConfig,
pub scheduled_for: DateTime<Utc>,
pub claimed_at: DateTime<Utc>,
pub was_catch_up: bool,
}Fields§
§run_id: String§schedule_id: String§schedule_name: String§run_config: ScheduleRunConfig§scheduled_for: DateTime<Utc>§claimed_at: DateTime<Utc>§was_catch_up: boolTrait Implementations§
Source§impl Clone for ScheduleRunJob
impl Clone for ScheduleRunJob
Source§fn clone(&self) -> ScheduleRunJob
fn clone(&self) -> ScheduleRunJob
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ScheduleRunJob
impl RefUnwindSafe for ScheduleRunJob
impl Send for ScheduleRunJob
impl Sync for ScheduleRunJob
impl Unpin for ScheduleRunJob
impl UnsafeUnpin for ScheduleRunJob
impl UnwindSafe for ScheduleRunJob
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