pub struct PreflightReport {
pub observations: Vec<(String, String)>,
pub warnings: Vec<String>,
pub errors: Vec<String>,
}Expand description
A report returned by run.
Fields§
§observations: Vec<(String, String)>Observations captured during the run (key/value pairs).
warnings: Vec<String>Non-fatal findings.
errors: Vec<String>Fatal findings.
Implementations§
Trait Implementations§
Source§impl Debug for PreflightReport
impl Debug for PreflightReport
Source§impl Default for PreflightReport
impl Default for PreflightReport
Source§fn default() -> PreflightReport
fn default() -> PreflightReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PreflightReport
impl RefUnwindSafe for PreflightReport
impl Send for PreflightReport
impl Sync for PreflightReport
impl Unpin for PreflightReport
impl UnwindSafe for PreflightReport
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