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