pub struct ExecOpts {
pub dry_run: bool,
pub overwrite_conflicts: bool,
}Expand description
Knobs for execute.
Fields§
§dry_run: boolIf true, print what would be done without touching disk.
overwrite_conflicts: boolIf true, overwrite Action::Conflict destinations. Default
false — conflicts are surfaced as skipped in the report.
Trait Implementations§
impl Copy for ExecOpts
Auto Trait Implementations§
impl Freeze for ExecOpts
impl RefUnwindSafe for ExecOpts
impl Send for ExecOpts
impl Sync for ExecOpts
impl Unpin for ExecOpts
impl UnsafeUnpin for ExecOpts
impl UnwindSafe for ExecOpts
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