pub enum Progress {
None,
Success(DateTime<Local>),
Interrupt(DateTime<Local>),
Failure(DateTime<Local>, Error),
CleanupError(DateTime<Local>, Error),
LastRun(NaiveDateTime),
}Variants
None
Success(DateTime<Local>)
Interrupt(DateTime<Local>)
Failure(DateTime<Local>, Error)
CleanupError(DateTime<Local>, Error)
LastRun(NaiveDateTime)
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Progress
impl Send for Progress
impl Sync for Progress
impl Unpin for Progress
impl !UnwindSafe for Progress
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more