pub struct Summary {
pub ok: u32,
pub warn: u32,
pub error: u32,
pub total: u32,
}Expand description
Tally of findings by severity. total == ok + warn + error == checks.len().
Fields§
§ok: u32§warn: u32§error: u32§total: u32Trait Implementations§
impl Copy for Summary
Auto Trait Implementations§
impl Freeze for Summary
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnsafeUnpin for Summary
impl UnwindSafe for Summary
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