pub struct Finding {
pub label: String,
pub validity: Validity,
}Expand description
A single input’s validation outcome, carried through to whichever output format is rendered at the end of a run.
Fields§
§label: StringDisplay label for the input (a file path, or <stdin>).
validity: ValidityThe validation verdict for the input.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Finding
impl RefUnwindSafe for Finding
impl Send for Finding
impl Sync for Finding
impl Unpin for Finding
impl UnsafeUnpin for Finding
impl UnwindSafe for Finding
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