pub struct WalkParallel { /* private fields */ }
Expand description
WalkParallel is a parallel recursive directory iterator over files paths in one or more directories.
Only file and directory paths matching the rules are returned. By default,
ignore files like .gitignore
are respected. The precise matching rules
and precedence is explained in the documentation for WalkBuilder
.
Unlike Walk
, this uses multiple threads for traversing a directory.
Implementations§
Source§impl WalkParallel
impl WalkParallel
Auto Trait Implementations§
impl Freeze for WalkParallel
impl RefUnwindSafe for WalkParallel
impl Send for WalkParallel
impl Sync for WalkParallel
impl Unpin for WalkParallel
impl UnwindSafe for WalkParallel
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