pub struct Skipped {
pub file: PathBuf,
pub line: usize,
pub rule: String,
pub reason: String,
}Expand description
One fix that was not applied, and why.
Fields§
§file: PathBufThe file the diagnostic was in.
line: usizeThe line it was on.
rule: StringThe rule it was filed under.
reason: StringWhy it was passed over — a class the run was not asked for, a rule --rule or
[fix] disable excluded, a suggest that is never applied. A sentence rather
than a code, because it is printed as one.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Skipped
impl RefUnwindSafe for Skipped
impl Send for Skipped
impl Sync for Skipped
impl Unpin for Skipped
impl UnsafeUnpin for Skipped
impl UnwindSafe for Skipped
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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