pub struct BlockRfqTradesNotification {
pub amount: Option<f64>,
pub combo_id: Option<String>,
pub direction: Option<Direction>,
pub hedge: Option<BlockRfqHedgeLeg>,
pub id: Option<i64>,
pub legs: Option<Vec<LegStructure>>,
pub mark_price: Option<f64>,
pub timestamp: Option<i64>,
pub trades: Option<Vec<BlockRfqTradesNotificationTrades>>,
}Fields§
§amount: Option<f64>§combo_id: Option<String>§direction: Option<Direction>§hedge: Option<BlockRfqHedgeLeg>§id: Option<i64>§legs: Option<Vec<LegStructure>>§mark_price: Option<f64>§timestamp: Option<i64>§trades: Option<Vec<BlockRfqTradesNotificationTrades>>Trait Implementations§
Source§impl Clone for BlockRfqTradesNotification
impl Clone for BlockRfqTradesNotification
Source§fn clone(&self) -> BlockRfqTradesNotification
fn clone(&self) -> BlockRfqTradesNotification
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 BlockRfqTradesNotification
impl Debug for BlockRfqTradesNotification
Source§impl Default for BlockRfqTradesNotification
impl Default for BlockRfqTradesNotification
Source§fn default() -> BlockRfqTradesNotification
fn default() -> BlockRfqTradesNotification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BlockRfqTradesNotification
impl<'de> Deserialize<'de> for BlockRfqTradesNotification
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
impl StructuralPartialEq for BlockRfqTradesNotification
Auto Trait Implementations§
impl Freeze for BlockRfqTradesNotification
impl RefUnwindSafe for BlockRfqTradesNotification
impl Send for BlockRfqTradesNotification
impl Sync for BlockRfqTradesNotification
impl Unpin for BlockRfqTradesNotification
impl UnwindSafe for BlockRfqTradesNotification
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