pub struct Reclaimed {
pub job_id: String,
pub fingerprint: String,
pub crash_attempt: u32,
pub quarantined: bool,
}Expand description
A job the lease reclaimer swept. quarantined tells the caller which counter and
event to emit — eviction and quarantine are never silent (retention and eviction contract).
Fields§
§job_id: String§fingerprint: String§crash_attempt: u32§quarantined: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for Reclaimed
impl RefUnwindSafe for Reclaimed
impl Send for Reclaimed
impl Sync for Reclaimed
impl Unpin for Reclaimed
impl UnsafeUnpin for Reclaimed
impl UnwindSafe for Reclaimed
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