pub struct InverseLinearSpotTrade {
pub exec_id: String,
pub symbol: String,
pub price: Decimal,
pub size: Decimal,
pub side: Side,
pub time: Timestamp,
pub is_block_trade: bool,
pub is_rpi_trade: bool,
}Fields§
§exec_id: StringExecution ID
symbol: StringSymbol name
price: DecimalTrade price
size: DecimalTrade size
side: SideSide of taker Buy, Sell
time: TimestampTrade time (ms)
is_block_trade: boolboolean Whether the trade is block trade
is_rpi_trade: boolWhether the trade is RPI trade
Trait Implementations§
Source§impl Debug for InverseLinearSpotTrade
impl Debug for InverseLinearSpotTrade
Source§impl<'de> Deserialize<'de> for InverseLinearSpotTrade
impl<'de> Deserialize<'de> for InverseLinearSpotTrade
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
Source§impl PartialEq for InverseLinearSpotTrade
impl PartialEq for InverseLinearSpotTrade
Source§fn eq(&self, other: &InverseLinearSpotTrade) -> bool
fn eq(&self, other: &InverseLinearSpotTrade) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InverseLinearSpotTrade
Auto Trait Implementations§
impl Freeze for InverseLinearSpotTrade
impl RefUnwindSafe for InverseLinearSpotTrade
impl Send for InverseLinearSpotTrade
impl Sync for InverseLinearSpotTrade
impl Unpin for InverseLinearSpotTrade
impl UnsafeUnpin for InverseLinearSpotTrade
impl UnwindSafe for InverseLinearSpotTrade
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