pub struct NitpickConfig<'a> {
pub nitpicky: bool,
pub ignore: &'a [(String, String)],
pub ignore_regex: &'a [(String, String)],
}Expand description
Nitpick configuration, as warn_missing_reference consults it
(post_transforms/__init__.py:255-282).
Fields§
§nitpicky: bool§ignore: &'a [(String, String)]§ignore_regex: &'a [(String, String)]Auto Trait Implementations§
impl<'a> Freeze for NitpickConfig<'a>
impl<'a> RefUnwindSafe for NitpickConfig<'a>
impl<'a> Send for NitpickConfig<'a>
impl<'a> Sync for NitpickConfig<'a>
impl<'a> Unpin for NitpickConfig<'a>
impl<'a> UnsafeUnpin for NitpickConfig<'a>
impl<'a> UnwindSafe for NitpickConfig<'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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more