pub struct AggregateReport {
pub spec_commit: String,
pub valid: bool,
pub files: Vec<FileReport>,
}Expand description
Directory lint report written by --report in directory mode.
Fields§
§spec_commit: StringPinned spec commit at time of lint (SPEC_COMMIT).
valid: booltrue when every file is valid.
files: Vec<FileReport>Per-file results.
Trait Implementations§
Source§impl Debug for AggregateReport
impl Debug for AggregateReport
Auto Trait Implementations§
impl Freeze for AggregateReport
impl RefUnwindSafe for AggregateReport
impl Send for AggregateReport
impl Sync for AggregateReport
impl Unpin for AggregateReport
impl UnsafeUnpin for AggregateReport
impl UnwindSafe for AggregateReport
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