pub struct RoutineTriggerPlan {
pub routine_id: String,
pub run_count: u32,
pub scheduled_at_ms: u64,
pub next_fire_at_ms: u64,
}Fields§
§routine_id: String§run_count: u32§scheduled_at_ms: u64§next_fire_at_ms: u64Trait Implementations§
Source§impl Clone for RoutineTriggerPlan
impl Clone for RoutineTriggerPlan
Source§fn clone(&self) -> RoutineTriggerPlan
fn clone(&self) -> RoutineTriggerPlan
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 moreSource§impl Debug for RoutineTriggerPlan
impl Debug for RoutineTriggerPlan
Auto Trait Implementations§
impl Freeze for RoutineTriggerPlan
impl RefUnwindSafe for RoutineTriggerPlan
impl Send for RoutineTriggerPlan
impl Sync for RoutineTriggerPlan
impl Unpin for RoutineTriggerPlan
impl UnsafeUnpin for RoutineTriggerPlan
impl UnwindSafe for RoutineTriggerPlan
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