pub enum Status {
Pending,
Running,
Success(String),
Error(String),
}Expand description
The outcome of running (or attempting to run) a single cleaner.
Variants§
Pending
The cleaner is queued but has not started yet.
Running
The cleaner is currently executing.
Success(String)
The cleaner finished successfully; the string is a human-readable summary.
Error(String)
The cleaner failed; the string is a human-readable error message.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnsafeUnpin for Status
impl UnwindSafe for Status
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