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