pub struct Lowered {
pub cron: String,
pub mode: ExecMode,
pub cooldown: Option<String>,
}Expand description
What a When lowers to — the exact (cron, mode, cooldown)
trio the pre-#418 engine ran on. Keeping the engine vocabulary
unchanged is what lets Phase 1 swap the operator surface without
touching the tick / dedup machinery.
Fields§
§cron: String6-field cron handed to tokio-cron-scheduler — POLL_CRON
for reconcile shapes, verbatim for the escape hatch.
mode: ExecModeDedup semantics for decide_fire.
cooldown: Option<String>Humantime re-arm interval (None = succeed once, skip
forever).
Auto Trait Implementations§
impl Freeze for Lowered
impl RefUnwindSafe for Lowered
impl Send for Lowered
impl Sync for Lowered
impl Unpin for Lowered
impl UnsafeUnpin for Lowered
impl UnwindSafe for Lowered
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