pub struct IncrementalValidationReport {
pub report: ValidationReport,
pub components_validated: usize,
pub components_cached: usize,
pub duration: Duration,
}Expand description
Incremental validation report with performance metrics
Fields§
§report: ValidationReport§components_validated: usize§components_cached: usize§duration: DurationImplementations§
Trait Implementations§
Source§impl Clone for IncrementalValidationReport
impl Clone for IncrementalValidationReport
Source§fn clone(&self) -> IncrementalValidationReport
fn clone(&self) -> IncrementalValidationReport
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 moreAuto Trait Implementations§
impl Freeze for IncrementalValidationReport
impl RefUnwindSafe for IncrementalValidationReport
impl Send for IncrementalValidationReport
impl Sync for IncrementalValidationReport
impl Unpin for IncrementalValidationReport
impl UnwindSafe for IncrementalValidationReport
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