pub enum StaleKind {
Sha,
CountWindow,
Age,
}Expand description
WHY a check reads stale — three distinct, auditable sub-reasons the flat stale label collapses.
Surfaced in the events log (never masked into one bucket) so a disabled/drifted staleness_ref that
is masking a real red stays visible: sha (verified_at_sha behind the live origin), count-window
(a triggering change landed after the last run), age (the deciding receipt is past the window).
Variants§
Implementations§
Trait Implementations§
impl StructuralPartialEq for StaleKind
Auto Trait Implementations§
impl Freeze for StaleKind
impl RefUnwindSafe for StaleKind
impl Send for StaleKind
impl Sync for StaleKind
impl Unpin for StaleKind
impl UnsafeUnpin for StaleKind
impl UnwindSafe for StaleKind
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