pub struct DirectoryScanner { /* private fields */ }Expand description
A directory scanner with configurable iteration behaviour.
§Alternatives
This scanner is able to recursively iterate over the directory
as well as optionally follow symbolic links. If, however, you’re
looking for something with a bit more features, such as sorting,
and a longer history of ecosystem use, consider the
walkdir crate,
which this scanner has been inspired by.
Implementations§
Trait Implementations§
Source§impl IntoIterator for DirectoryScanner
impl IntoIterator for DirectoryScanner
Auto Trait Implementations§
impl Freeze for DirectoryScanner
impl RefUnwindSafe for DirectoryScanner
impl Send for DirectoryScanner
impl Sync for DirectoryScanner
impl Unpin for DirectoryScanner
impl UnwindSafe for DirectoryScanner
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