pub struct LoadReport {
pub errors: Vec<Diagnostic>,
pub warnings: Vec<Diagnostic>,
}Expand description
Aggregated load + validation report. errors is fatal; warnings is
informational (e.g. a control YAML parsed but a referenced policy file
is missing).
Fields§
§errors: Vec<Diagnostic>§warnings: Vec<Diagnostic>Implementations§
Trait Implementations§
Source§impl Debug for LoadReport
impl Debug for LoadReport
Source§impl Default for LoadReport
impl Default for LoadReport
Source§fn default() -> LoadReport
fn default() -> LoadReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LoadReport
impl RefUnwindSafe for LoadReport
impl Send for LoadReport
impl Sync for LoadReport
impl Unpin for LoadReport
impl UnsafeUnpin for LoadReport
impl UnwindSafe for LoadReport
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