pub struct PreflightReady {
pub preflight: Vec<PreflightCheck>,
pub ready: Option<bool>,
}Expand description
Successful --preflight payload (data when ok: true).
Fields§
§preflight: Vec<PreflightCheck>§ready: Option<bool>Trait Implementations§
Source§impl Debug for PreflightReady
impl Debug for PreflightReady
Source§impl Default for PreflightReady
impl Default for PreflightReady
Source§fn default() -> PreflightReady
fn default() -> PreflightReady
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PreflightReady
impl<'de> Deserialize<'de> for PreflightReady
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 PreflightReady
impl RefUnwindSafe for PreflightReady
impl Send for PreflightReady
impl Sync for PreflightReady
impl Unpin for PreflightReady
impl UnsafeUnpin for PreflightReady
impl UnwindSafe for PreflightReady
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