pub struct CronFire {
pub action: String,
pub scheduled_at: i64,
pub fired_at: i64,
pub finished_at: Option<i64>,
pub result: String,
pub error: Option<ScheduleErrorInfo>,
}Fields§
§action: String§scheduled_at: i64§fired_at: i64§finished_at: Option<i64>§result: String§error: Option<ScheduleErrorInfo>Trait Implementations§
impl Eq for CronFire
impl StructuralPartialEq for CronFire
Auto Trait Implementations§
impl Freeze for CronFire
impl RefUnwindSafe for CronFire
impl Send for CronFire
impl Sync for CronFire
impl Unpin for CronFire
impl UnsafeUnpin for CronFire
impl UnwindSafe for CronFire
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compares
self with key and returns true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.