pub struct ValidationReport {
pub issues: Vec<ValidationIssue>,
pub items_checked: usize,
pub relationships_checked: usize,
pub duration: Duration,
}Expand description
Validation report containing all issues found.
Fields§
§issues: Vec<ValidationIssue>All validation issues found.
items_checked: usizeNumber of items checked.
relationships_checked: usizeNumber of relationships checked.
duration: DurationTime taken to perform validation.
Implementations§
Source§impl ValidationReport
impl ValidationReport
Sourcepub fn error_count(&self) -> usize
pub fn error_count(&self) -> usize
Returns the number of errors.
Sourcepub fn warning_count(&self) -> usize
pub fn warning_count(&self) -> usize
Returns the number of warnings.
Sourcepub fn errors(&self) -> Vec<&ValidationError>
pub fn errors(&self) -> Vec<&ValidationError>
Returns all errors.
Sourcepub fn warnings(&self) -> Vec<&ValidationError>
pub fn warnings(&self) -> Vec<&ValidationError>
Returns all warnings.
Sourcepub fn add_error(&mut self, error: ValidationError)
pub fn add_error(&mut self, error: ValidationError)
Adds an error to the report.
Sourcepub fn add_warning(&mut self, error: ValidationError)
pub fn add_warning(&mut self, error: ValidationError)
Adds a warning to the report.
Sourcepub fn add_errors(&mut self, errors: impl IntoIterator<Item = ValidationError>)
pub fn add_errors(&mut self, errors: impl IntoIterator<Item = ValidationError>)
Adds multiple errors to the report.
Sourcepub fn add_warnings(
&mut self,
errors: impl IntoIterator<Item = ValidationError>,
)
pub fn add_warnings( &mut self, errors: impl IntoIterator<Item = ValidationError>, )
Adds multiple warnings to the report.
Trait Implementations§
Source§impl Clone for ValidationReport
impl Clone for ValidationReport
Source§fn clone(&self) -> ValidationReport
fn clone(&self) -> ValidationReport
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 ValidationReport
impl Debug for ValidationReport
Source§impl Default for ValidationReport
impl Default for ValidationReport
Auto Trait Implementations§
impl Freeze for ValidationReport
impl RefUnwindSafe for ValidationReport
impl Send for ValidationReport
impl Sync for ValidationReport
impl Unpin for ValidationReport
impl UnwindSafe for ValidationReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more