pub struct ValidationReport {
pub passed: bool,
pub data_validation: DataValidationResult,
pub structure_validation: StructureValidationResult,
pub statistical_validation: StatisticalValidationResult,
pub performance_validation: PerformanceValidationResult,
pub cross_validation: CrossValidationResult,
pub robustness_testing: RobustnessTestResult,
pub messages: Vec<ValidationMessage>,
pub validation_time: Duration,
}Expand description
Validation results summary
Fields§
§passed: boolOverall validation status
data_validation: DataValidationResultData validation results
structure_validation: StructureValidationResultStructure validation results
statistical_validation: StatisticalValidationResultStatistical validation results
performance_validation: PerformanceValidationResultPerformance validation results
cross_validation: CrossValidationResultCross-validation results
robustness_testing: RobustnessTestResultRobustness testing results
messages: Vec<ValidationMessage>Detailed validation messages
validation_time: DurationTotal validation time
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 moreAuto 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> 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