pub struct ValidationReport {
pub passed: bool,
pub steps: Vec<ValidationStep>,
pub summary: String,
}Expand description
Detailed validation report.
Fields§
§passed: boolWhether the consignment passed validation
steps: Vec<ValidationStep>Individual validation step results
summary: StringSummary of findings
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValidationReport
impl RefUnwindSafe for ValidationReport
impl Send for ValidationReport
impl Sync for ValidationReport
impl Unpin for ValidationReport
impl UnsafeUnpin 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