pub struct WalkOptions {
pub skip_hidden: bool,
pub max_depth: Option<usize>,
pub verbose: bool,
pub skip_unsupported_extensions: bool,
}Expand description
Configuration for directory walking
Fields§
§max_depth: Option<usize>§verbose: bool§skip_unsupported_extensions: boolWhen true, only collect files with extensions in supported_extensions().
When false, collect all files (callers handle extension filtering themselves).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WalkOptions
impl RefUnwindSafe for WalkOptions
impl Send for WalkOptions
impl Sync for WalkOptions
impl Unpin for WalkOptions
impl UnsafeUnpin for WalkOptions
impl UnwindSafe for WalkOptions
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