pub struct CronCore { /* private fields */ }Expand description
Pattern-periodic compute core: a tick m ≥ 1 fires iff m mod cycle ∈ offsets. Structurally an interval with a match set — a cron expression’s
shape. The match count in (cursor, now] is computed arithmetically, so a
large now jump is O(offsets).
Implementations§
Trait Implementations§
impl Eq for CronCore
impl StructuralPartialEq for CronCore
Source§impl TimelineSource for CronCore
impl TimelineSource for CronCore
Auto Trait Implementations§
impl Freeze for CronCore
impl RefUnwindSafe for CronCore
impl Send for CronCore
impl Sync for CronCore
impl Unpin for CronCore
impl UnsafeUnpin for CronCore
impl UnwindSafe for CronCore
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