pub struct ValidationSummary {
pub dialect: String,
pub issues: Vec<ValidationIssue>,
pub summary: SummaryStats,
pub checks: CheckResults,
}Expand description
Validation summary with collected issues
Fields§
§dialect: String§issues: Vec<ValidationIssue>§summary: SummaryStats§checks: CheckResultsImplementations§
Source§impl ValidationSummary
impl ValidationSummary
pub fn has_errors(&self) -> bool
pub fn has_warnings(&self) -> bool
Trait Implementations§
Source§impl Debug for ValidationSummary
impl Debug for ValidationSummary
Auto Trait Implementations§
impl Freeze for ValidationSummary
impl RefUnwindSafe for ValidationSummary
impl Send for ValidationSummary
impl Sync for ValidationSummary
impl Unpin for ValidationSummary
impl UnwindSafe for ValidationSummary
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