pub struct ExecuteOpts {
pub apply: bool,
pub output: Option<PathBuf>,
pub limit: Option<usize>,
}Fields§
§apply: boolWhen true, write modified files. When false, perform a dry run.
output: Option<PathBuf>Optional override of the destination path. Only meaningful with a single input file.
limit: Option<usize>Stop after this many modifications across all files.
Trait Implementations§
Source§impl Clone for ExecuteOpts
impl Clone for ExecuteOpts
Source§impl Debug for ExecuteOpts
impl Debug for ExecuteOpts
Auto Trait Implementations§
impl Freeze for ExecuteOpts
impl RefUnwindSafe for ExecuteOpts
impl Send for ExecuteOpts
impl Sync for ExecuteOpts
impl Unpin for ExecuteOpts
impl UnsafeUnpin for ExecuteOpts
impl UnwindSafe for ExecuteOpts
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