pub struct FixOptions<'a> {
pub files: Vec<&'a PathBuf>,
pub ignore_checks: Vec<LintKind>,
pub exclude: Vec<&'a PathBuf>,
pub quiet: bool,
pub recursive: bool,
pub no_backup: bool,
pub dry_run: bool,
}Fields§
§files: Vec<&'a PathBuf>§ignore_checks: Vec<LintKind>§exclude: Vec<&'a PathBuf>§quiet: bool§recursive: bool§no_backup: bool§dry_run: boolAuto Trait Implementations§
impl<'a> Freeze for FixOptions<'a>
impl<'a> RefUnwindSafe for FixOptions<'a>
impl<'a> Send for FixOptions<'a>
impl<'a> Sync for FixOptions<'a>
impl<'a> Unpin for FixOptions<'a>
impl<'a> UnwindSafe for FixOptions<'a>
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