pub struct Config {
pub root: Option<PathBuf>,
pub inputs: Vec<PathBuf>,
pub fatal_errors: bool,
pub _verbose: u8,
pub dry_run: bool,
pub ignore_mtime: bool,
pub ignore_mode: bool,
pub ignore_owner: bool,
pub source_date_epoch: Option<SystemTime>,
pub print_selinux_contexts: bool,
}Fields§
§root: Option<PathBuf>§inputs: Vec<PathBuf>§fatal_errors: bool§_verbose: u8§dry_run: bool§ignore_mtime: bool§ignore_mode: bool§ignore_owner: bool§source_date_epoch: Option<SystemTime>§print_selinux_contexts: boolImplementations§
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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