pub struct RuntimeParityFeedback {
pub schema_version: String,
pub cycles: u64,
pub sample_size: u64,
pub fills: u64,
pub rejections: u64,
pub rejection_rate: f64,
pub by_rejection_reason: BTreeMap<String, u64>,
pub by_rejection_symbol: BTreeMap<String, u64>,
pub items: Vec<Value>,
pub extra: BTreeMap<String, Value>,
}Fields§
§schema_version: String§cycles: u64§sample_size: u64§fills: u64§rejections: u64§rejection_rate: f64§by_rejection_reason: BTreeMap<String, u64>§by_rejection_symbol: BTreeMap<String, u64>§items: Vec<Value>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for RuntimeParityFeedback
impl Clone for RuntimeParityFeedback
Source§fn clone(&self) -> RuntimeParityFeedback
fn clone(&self) -> RuntimeParityFeedback
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 RuntimeParityFeedback
impl Debug for RuntimeParityFeedback
Source§impl Default for RuntimeParityFeedback
impl Default for RuntimeParityFeedback
Source§fn default() -> RuntimeParityFeedback
fn default() -> RuntimeParityFeedback
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RuntimeParityFeedbackwhere
RuntimeParityFeedback: Default,
impl<'de> Deserialize<'de> for RuntimeParityFeedbackwhere
RuntimeParityFeedback: 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 RuntimeParityFeedback
impl RefUnwindSafe for RuntimeParityFeedback
impl Send for RuntimeParityFeedback
impl Sync for RuntimeParityFeedback
impl Unpin for RuntimeParityFeedback
impl UnsafeUnpin for RuntimeParityFeedback
impl UnwindSafe for RuntimeParityFeedback
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