pub enum WalkState {
Continue,
Skip,
Quit,
}
Expand description
WalkState is used in the parallel recursive directory iterator to indicate whether walking should continue as normal, skip descending into a particular directory or quit the walk entirely.
Variants§
Continue
Continue walking as normal.
Skip
If the directory entry given is a directory, don’t descend into it. In all other cases, this has no effect.
Quit
Quit the entire iterator as soon as possible.
Note that this is an inherently asynchronous action. It is possible for more entries to be yielded even after instructing the iterator to quit.
Trait Implementations§
source§impl PartialEq<WalkState> for WalkState
impl PartialEq<WalkState> for WalkState
impl Copy for WalkState
impl Eq for WalkState
impl StructuralEq for WalkState
impl StructuralPartialEq for WalkState
Auto Trait Implementations§
impl RefUnwindSafe for WalkState
impl Send for WalkState
impl Sync for WalkState
impl Unpin for WalkState
impl UnwindSafe for WalkState
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