pub enum DiagnosticCheckStatus {
NotRun,
Passed,
Failed,
}Expand description
DiagnosticCheckStatus
Status for one diagnostic preflight check.
Variants§
NotRun
The check could not run because prerequisite state was unavailable.
Passed
The check completed successfully.
Failed
The check ran and found a problem.
Trait Implementations§
Source§impl Clone for DiagnosticCheckStatus
impl Clone for DiagnosticCheckStatus
Source§fn clone(&self) -> DiagnosticCheckStatus
fn clone(&self) -> DiagnosticCheckStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DiagnosticCheckStatus
Source§impl Debug for DiagnosticCheckStatus
impl Debug for DiagnosticCheckStatus
Source§impl<'de> Deserialize<'de> for DiagnosticCheckStatus
impl<'de> Deserialize<'de> for DiagnosticCheckStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DiagnosticCheckStatus
Source§impl PartialEq for DiagnosticCheckStatus
impl PartialEq for DiagnosticCheckStatus
Source§fn eq(&self, other: &DiagnosticCheckStatus) -> bool
fn eq(&self, other: &DiagnosticCheckStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DiagnosticCheckStatus
impl Serialize for DiagnosticCheckStatus
impl StructuralPartialEq for DiagnosticCheckStatus
Auto Trait Implementations§
impl Freeze for DiagnosticCheckStatus
impl RefUnwindSafe for DiagnosticCheckStatus
impl Send for DiagnosticCheckStatus
impl Sync for DiagnosticCheckStatus
impl Unpin for DiagnosticCheckStatus
impl UnsafeUnpin for DiagnosticCheckStatus
impl UnwindSafe for DiagnosticCheckStatus
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