pub struct RuntimeParity {Show 17 fields
pub schema_version: String,
pub available: bool,
pub ok: bool,
pub mode: String,
pub source: Option<String>,
pub generated_at: Option<String>,
pub cycles_requested: u64,
pub cycles_run: u64,
pub paper_only: bool,
pub places_live_orders: bool,
pub paper: RuntimeParityPaper,
pub live_shadow: RuntimeParityLiveShadow,
pub feedback: RuntimeParityFeedback,
pub certification: LiveCertification,
pub checks: BTreeMap<String, Value>,
pub claim_boundary: BTreeMap<String, Value>,
pub extra: BTreeMap<String, Value>,
}Fields§
§schema_version: String§available: bool§ok: bool§mode: String§source: Option<String>§generated_at: Option<String>§cycles_requested: u64§cycles_run: u64§paper_only: bool§places_live_orders: bool§paper: RuntimeParityPaper§live_shadow: RuntimeParityLiveShadow§feedback: RuntimeParityFeedback§certification: LiveCertification§checks: BTreeMap<String, Value>§claim_boundary: BTreeMap<String, Value>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for RuntimeParity
impl Clone for RuntimeParity
Source§fn clone(&self) -> RuntimeParity
fn clone(&self) -> RuntimeParity
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 RuntimeParity
impl Debug for RuntimeParity
Source§impl Default for RuntimeParity
impl Default for RuntimeParity
Source§fn default() -> RuntimeParity
fn default() -> RuntimeParity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RuntimeParitywhere
RuntimeParity: Default,
impl<'de> Deserialize<'de> for RuntimeParitywhere
RuntimeParity: 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 RuntimeParity
impl RefUnwindSafe for RuntimeParity
impl Send for RuntimeParity
impl Sync for RuntimeParity
impl Unpin for RuntimeParity
impl UnsafeUnpin for RuntimeParity
impl UnwindSafe for RuntimeParity
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