pub struct ScanConfig {
pub root_path: PathBuf,
pub exclude_patterns: Vec<String>,
}Expand description
Configuration for the file scanning process.
Fields§
§root_path: PathBufThe root directory from which the scan will start.
exclude_patterns: Vec<String>Optional patterns to exclude from the scan.
Implementations§
Auto Trait Implementations§
impl Freeze for ScanConfig
impl RefUnwindSafe for ScanConfig
impl Send for ScanConfig
impl Sync for ScanConfig
impl Unpin for ScanConfig
impl UnwindSafe for ScanConfig
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