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