pub struct ValidationReport {
pub layer_count: u32,
pub warnings: Vec<String>,
}
Expand description
A struct to hold the successful result of a validation check. It contains the calculated number of copper layers and a list of non-critical warnings.
Fields§
§layer_count: u32
§warnings: Vec<String>
Trait Implementations§
Source§impl Debug for ValidationReport
impl Debug for ValidationReport
Source§impl PartialEq for ValidationReport
impl PartialEq for ValidationReport
impl Eq for ValidationReport
impl StructuralPartialEq for ValidationReport
Auto 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