pub struct ValidationReport {
pub json_ok: bool,
pub structure_ok: bool,
pub boxes_count: usize,
pub lines_count: usize,
pub errors: Vec<ValidationError>,
pub warnings: Vec<String>,
}Expand description
Layer 1 static validation report.
Fields§
§json_ok: bool§structure_ok: bool§boxes_count: usize§lines_count: usize§errors: Vec<ValidationError>§warnings: Vec<String>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