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