pub struct LiveCockpitPreflight {
pub schema_version: String,
pub ready: bool,
pub live_mode: String,
pub controls_ready: bool,
pub summary: BTreeMap<String, Value>,
pub failed_checks: Vec<LivePreflightCheck>,
pub extra: BTreeMap<String, Value>,
}Fields§
§schema_version: String§ready: bool§live_mode: String§controls_ready: bool§summary: BTreeMap<String, Value>§failed_checks: Vec<LivePreflightCheck>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for LiveCockpitPreflight
impl Clone for LiveCockpitPreflight
Source§fn clone(&self) -> LiveCockpitPreflight
fn clone(&self) -> LiveCockpitPreflight
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 LiveCockpitPreflight
impl Debug for LiveCockpitPreflight
Source§impl Default for LiveCockpitPreflight
impl Default for LiveCockpitPreflight
Source§fn default() -> LiveCockpitPreflight
fn default() -> LiveCockpitPreflight
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LiveCockpitPreflightwhere
LiveCockpitPreflight: Default,
impl<'de> Deserialize<'de> for LiveCockpitPreflightwhere
LiveCockpitPreflight: Default,
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 LiveCockpitPreflight
impl RefUnwindSafe for LiveCockpitPreflight
impl Send for LiveCockpitPreflight
impl Sync for LiveCockpitPreflight
impl Unpin for LiveCockpitPreflight
impl UnsafeUnpin for LiveCockpitPreflight
impl UnwindSafe for LiveCockpitPreflight
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