pub struct LintReport {
pub passed: bool,
pub gates: Vec<GateResult>,
pub total_duration_ms: u64,
pub findings: Vec<LintFinding>,
pub cache_stats: CacheStats,
pub contract_timings: Vec<(String, u64)>,
}Expand description
Overall lint report.
Fields§
§passed: bool§gates: Vec<GateResult>§total_duration_ms: u64§findings: Vec<LintFinding>§cache_stats: CacheStats§contract_timings: Vec<(String, u64)>Per-contract processing times: (contract_stem, duration_ms).
Trait Implementations§
Source§impl Clone for LintReport
impl Clone for LintReport
Source§fn clone(&self) -> LintReport
fn clone(&self) -> LintReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LintReport
impl Debug for LintReport
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