pub struct DiagnosticCheck {
pub status: DiagnosticCheckStatus,
pub message: Option<String>,
}Expand description
DiagnosticCheck
Read-only diagnostic status for a preflight check.
Fields§
§status: DiagnosticCheckStatusCheck status.
message: Option<String>Failure or skip reason.
Implementations§
Trait Implementations§
Source§impl Clone for DiagnosticCheck
impl Clone for DiagnosticCheck
Source§fn clone(&self) -> DiagnosticCheck
fn clone(&self) -> DiagnosticCheck
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 moreSource§impl Debug for DiagnosticCheck
impl Debug for DiagnosticCheck
Source§impl<'de> Deserialize<'de> for DiagnosticCheck
impl<'de> Deserialize<'de> for DiagnosticCheck
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 DiagnosticCheck
Source§impl PartialEq for DiagnosticCheck
impl PartialEq for DiagnosticCheck
Source§fn eq(&self, other: &DiagnosticCheck) -> bool
fn eq(&self, other: &DiagnosticCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DiagnosticCheck
impl Serialize for DiagnosticCheck
impl StructuralPartialEq for DiagnosticCheck
Auto Trait Implementations§
impl Freeze for DiagnosticCheck
impl RefUnwindSafe for DiagnosticCheck
impl Send for DiagnosticCheck
impl Sync for DiagnosticCheck
impl Unpin for DiagnosticCheck
impl UnsafeUnpin for DiagnosticCheck
impl UnwindSafe for DiagnosticCheck
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