pub enum Filtering {
Ignore,
IgnoreDir,
Continue,
}
Expand description
Sets the filtering behavior.
Variants§
Ignore
Ignore the current entry.
IgnoreDir
Ignore the current entry and, if a directory, do not traverse its childs.
Continue
Continue the normal processing.
Trait Implementations§
impl Eq for Filtering
impl StructuralPartialEq for Filtering
Auto Trait Implementations§
impl Freeze for Filtering
impl RefUnwindSafe for Filtering
impl Send for Filtering
impl Sync for Filtering
impl Unpin for Filtering
impl UnwindSafe for Filtering
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