pub enum RepackSchedule {
Started(RepackHandle),
NotNeeded(RepackInventory),
BackingOff {
remaining: Duration,
},
Busy,
}Expand description
Result of asking the scheduler to start work.
Variants§
Started(RepackHandle)
A background operation started.
NotNeeded(RepackInventory)
No automatic threshold was crossed.
BackingOff
This store is in success/failure backoff.
Busy
The per-store or global concurrency bound is occupied.
Auto Trait Implementations§
impl !RefUnwindSafe for RepackSchedule
impl !Sync for RepackSchedule
impl !UnwindSafe for RepackSchedule
impl Freeze for RepackSchedule
impl Send for RepackSchedule
impl Unpin for RepackSchedule
impl UnsafeUnpin for RepackSchedule
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