pub struct ValidationResult {
pub package: Imferno,
pub validation: ValidationReport,
}Expand description
Result of parsing and validating an IMF package.
This is the primary return type — contains the full parsed package and all validation findings.
Fields§
§package: ImfernoThe fully parsed IMF package.
validation: ValidationReportValidation findings (spec violations, warnings, info).
Trait Implementations§
Source§impl Debug for ValidationResult
impl Debug for ValidationResult
Auto Trait Implementations§
impl Freeze for ValidationResult
impl RefUnwindSafe for ValidationResult
impl Send for ValidationResult
impl Sync for ValidationResult
impl Unpin for ValidationResult
impl UnsafeUnpin for ValidationResult
impl UnwindSafe for ValidationResult
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