pub struct PlanOpts {
pub exclude: Vec<PathBuf>,
pub recursive: bool,
pub on_conflict: ConflictPolicy,
}Expand description
Options for planning a rename batch.
Fields§
§exclude: Vec<PathBuf>Paths to exclude.
recursive: boolWhether to traverse subdirectories.
on_conflict: ConflictPolicyWhat to do on conflicts. Currently only Abort is functional.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlanOpts
impl RefUnwindSafe for PlanOpts
impl Send for PlanOpts
impl Sync for PlanOpts
impl Unpin for PlanOpts
impl UnsafeUnpin for PlanOpts
impl UnwindSafe for PlanOpts
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