pub struct MyPreventedMatchesResponseItem {
pub maker_order_id: i64,
pub maker_prevented_quantity: String,
pub prevented_match_id: i64,
pub price: String,
pub self_trade_prevention_mode: String,
pub symbol: String,
pub taker_order_id: i64,
pub trade_group_id: i64,
pub transact_time: i64,
}
Expand description
MyPreventedMatchesResponseItem
JSON schema
{
"type": "object",
"required": [
"makerOrderId",
"makerPreventedQuantity",
"preventedMatchId",
"price",
"selfTradePreventionMode",
"symbol",
"takerOrderId",
"tradeGroupId",
"transactTime"
],
"properties": {
"makerOrderId": {
"examples": [
3
],
"type": "integer",
"format": "int64"
},
"makerPreventedQuantity": {
"examples": [
"1.300000"
],
"type": "string"
},
"preventedMatchId": {
"examples": [
1
],
"type": "integer",
"format": "int64"
},
"price": {
"examples": [
"1.100000"
],
"type": "string"
},
"selfTradePreventionMode": {
"examples": [
"EXPIRE_MAKER"
],
"type": "string"
},
"symbol": {
"examples": [
"BTCUSDT"
],
"type": "string"
},
"takerOrderId": {
"examples": [
5
],
"type": "integer",
"format": "int64"
},
"tradeGroupId": {
"examples": [
1
],
"type": "integer",
"format": "int64"
},
"transactTime": {
"examples": [
1669101687094
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§maker_order_id: i64
§maker_prevented_quantity: String
§prevented_match_id: i64
§price: String
§self_trade_prevention_mode: String
§symbol: String
§taker_order_id: i64
§trade_group_id: i64
§transact_time: i64
Trait Implementations§
Source§impl Clone for MyPreventedMatchesResponseItem
impl Clone for MyPreventedMatchesResponseItem
Source§fn clone(&self) -> MyPreventedMatchesResponseItem
fn clone(&self) -> MyPreventedMatchesResponseItem
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<'de> Deserialize<'de> for MyPreventedMatchesResponseItem
impl<'de> Deserialize<'de> for MyPreventedMatchesResponseItem
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<&MyPreventedMatchesResponseItem> for MyPreventedMatchesResponseItem
impl From<&MyPreventedMatchesResponseItem> for MyPreventedMatchesResponseItem
Source§fn from(value: &MyPreventedMatchesResponseItem) -> Self
fn from(value: &MyPreventedMatchesResponseItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MyPreventedMatchesResponseItem
impl RefUnwindSafe for MyPreventedMatchesResponseItem
impl Send for MyPreventedMatchesResponseItem
impl Sync for MyPreventedMatchesResponseItem
impl Unpin for MyPreventedMatchesResponseItem
impl UnwindSafe for MyPreventedMatchesResponseItem
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