pub enum FolderProcessed {
Cleaned(usize),
NoRuleMatch,
Skipped,
Abort,
}Variants§
Cleaned(usize)
The folder was cleaned and the amount of bytes removed is given
NoRuleMatch
The folder was not cleaned because it did not match any rule
Skipped
The folder was skipped, e.g. user decided to skip it
Abort
The folder was aborted, e.g. user decided to abort the whole process
Auto Trait Implementations§
impl Freeze for FolderProcessed
impl RefUnwindSafe for FolderProcessed
impl Send for FolderProcessed
impl Sync for FolderProcessed
impl Unpin for FolderProcessed
impl UnwindSafe for FolderProcessed
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more