pub struct Match {Show 15 fields
pub trade_id: usize,
pub sequence: usize,
pub maker_order_id: String,
pub taker_order_id: String,
pub time: String,
pub product_id: String,
pub size: Decimal,
pub price: Decimal,
pub side: OrderSide,
pub taker_user_id: Option<String>,
pub taker_profile_id: Option<String>,
pub maker_user_id: Option<String>,
pub maker_profile_id: Option<String>,
pub user_id: Option<String>,
pub profile_id: Option<String>,
}
Fields§
§trade_id: usize
§sequence: usize
§maker_order_id: String
§taker_order_id: String
§time: String
§product_id: String
§size: Decimal
§price: Decimal
§side: OrderSide
§taker_user_id: Option<String>
§taker_profile_id: Option<String>
§maker_user_id: Option<String>
§maker_profile_id: Option<String>
§user_id: Option<String>
§profile_id: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Match
impl<'de> Deserialize<'de> for Match
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 From<Match> for OpenLimitsWebSocketMessage
impl From<Match> for OpenLimitsWebSocketMessage
impl StructuralPartialEq for Match
Auto Trait Implementations§
impl Freeze for Match
impl RefUnwindSafe for Match
impl Send for Match
impl Sync for Match
impl Unpin for Match
impl UnwindSafe for Match
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