pub struct DiagnosticSummary {
pub total_checks: u32,
pub passed: u32,
pub warnings: u32,
pub failures: u32,
}
Expand description
Diagnostic summary
Fields§
§total_checks: u32
Total number of diagnostic checks performed
passed: u32
Number of checks that passed
warnings: u32
Number of checks with warnings
failures: u32
Number of checks that failed
Trait Implementations§
Source§impl Clone for DiagnosticSummary
impl Clone for DiagnosticSummary
Source§fn clone(&self) -> DiagnosticSummary
fn clone(&self) -> DiagnosticSummary
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 DiagnosticSummary
impl Debug for DiagnosticSummary
Source§impl<'de> Deserialize<'de> for DiagnosticSummary
impl<'de> Deserialize<'de> for DiagnosticSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DiagnosticSummary
impl RefUnwindSafe for DiagnosticSummary
impl Send for DiagnosticSummary
impl Sync for DiagnosticSummary
impl Unpin for DiagnosticSummary
impl UnwindSafe for DiagnosticSummary
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