pub struct PreflightCheck {
pub name: String,
pub status: CheckStatus,
pub detail: String,
}Expand description
Result of a single pre-flight check.
Fields§
§name: StringHuman-readable name of the check (e.g. “Recovery Mode”).
status: CheckStatusWhether the check passed, warned, or failed.
detail: StringDescriptive detail about the check result.
Trait Implementations§
Source§impl Clone for PreflightCheck
impl Clone for PreflightCheck
Source§fn clone(&self) -> PreflightCheck
fn clone(&self) -> PreflightCheck
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 PreflightCheck
impl Debug for PreflightCheck
Auto Trait Implementations§
impl Freeze for PreflightCheck
impl RefUnwindSafe for PreflightCheck
impl Send for PreflightCheck
impl Sync for PreflightCheck
impl Unpin for PreflightCheck
impl UnsafeUnpin for PreflightCheck
impl UnwindSafe for PreflightCheck
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