pub struct PreflightCheck {
pub label: String,
pub pass: bool,
pub code: Option<String>,
pub remedy: Option<String>,
}Expand description
One row from a --preflight response (data.preflight or
error.details.preflight).
Fields§
§label: String§pass: bool§code: Option<String>§remedy: Option<String>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 (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 PreflightCheck
impl Debug for PreflightCheck
Source§impl<'de> Deserialize<'de> for PreflightCheck
impl<'de> Deserialize<'de> for PreflightCheck
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
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