pub struct LintReport {
pub lines: Vec<String>,
pub has_errors: bool,
}Expand description
Result of skills_lint — a one-line report per file and a
boolean indicating whether any error was found.
Fields§
§lines: Vec<String>Per-file lines, ordered by file path.
has_errors: boolTrue when at least one file in dir failed to parse or
violated a hard constraint (size limit, missing required
field).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LintReport
impl RefUnwindSafe for LintReport
impl Send for LintReport
impl Sync for LintReport
impl Unpin for LintReport
impl UnsafeUnpin for LintReport
impl UnwindSafe for LintReport
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