pub struct PreflightReport {
pub passed: bool,
pub warnings: usize,
pub failures: usize,
pub checks: Vec<CheckResult>,
}Expand description
Aggregated preflight report.
Fields§
§passed: bool§warnings: usize§failures: usize§checks: Vec<CheckResult>Trait Implementations§
Source§impl Clone for PreflightReport
impl Clone for PreflightReport
Source§fn clone(&self) -> PreflightReport
fn clone(&self) -> PreflightReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PreflightReport
impl Debug for PreflightReport
Auto Trait Implementations§
impl Freeze for PreflightReport
impl RefUnwindSafe for PreflightReport
impl Send for PreflightReport
impl Sync for PreflightReport
impl Unpin for PreflightReport
impl UnsafeUnpin 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