pub struct CombinedOptions {
pub recursive: bool,
pub dry_run: bool,
}Expand description
Options for combined processing
Fields§
§recursive: boolProcess directories recursively
dry_run: boolDry run mode (don’t modify files)
Trait Implementations§
Source§impl Clone for CombinedOptions
impl Clone for CombinedOptions
Source§fn clone(&self) -> CombinedOptions
fn clone(&self) -> CombinedOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CombinedOptions
impl Debug for CombinedOptions
Auto Trait Implementations§
impl Freeze for CombinedOptions
impl RefUnwindSafe for CombinedOptions
impl Send for CombinedOptions
impl Sync for CombinedOptions
impl Unpin for CombinedOptions
impl UnsafeUnpin for CombinedOptions
impl UnwindSafe for CombinedOptions
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