pub enum Due {
Now {
slot: DateTime<Utc>,
},
Stale {
slot: DateTime<Utc>,
age: Duration,
},
Not {
next: Option<DateTime<Utc>>,
},
Disabled,
}Variants§
Now
Fire, for this slot.
Stale
A slot was missed and is past its catch-up window. Recorded as skipped — evidence, not silence — and the marker advances past it.
Not
Disabled
Trait Implementations§
impl StructuralPartialEq for Due
Auto Trait Implementations§
impl Freeze for Due
impl RefUnwindSafe for Due
impl Send for Due
impl Sync for Due
impl Unpin for Due
impl UnsafeUnpin for Due
impl UnwindSafe for Due
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