pub struct PreflightReport {
pub checks: Vec<PreflightCheck>,
pub passed: bool,
}Expand description
Aggregate report of all pre-flight checks.
Fields§
§checks: Vec<PreflightCheck>Individual check results.
passed: boolWhether all checks passed (no failures).
Trait Implementations§
Source§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