pub struct MarginForceLiquidationRecResponse {
pub rows: Vec<MarginForceLiquidationRecResponseRowsItem>,
pub total: i32,
}
Expand description
MarginForceLiquidationRecResponse
JSON schema
{
"examples": [
{
"rows": [
{
"avgPrice": "0.00388359",
"executedQty": "31.39000000",
"isIsolated": true,
"orderId": 180015097,
"price": "0.00388110",
"qty": "31.39000000",
"side": "SELL",
"symbol": "BNBBTC",
"timeInForce": "GTC",
"updatedTime": 1558941374745
}
],
"total": 1
}
],
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"avgPrice",
"executedQty",
"isIsolated",
"orderId",
"price",
"qty",
"side",
"symbol",
"timeInForce",
"updatedTime"
],
"properties": {
"avgPrice": {
"type": "string"
},
"executedQty": {
"type": "string"
},
"isIsolated": {
"type": "boolean"
},
"orderId": {
"type": "integer",
"format": "int64"
},
"price": {
"type": "string"
},
"qty": {
"type": "string"
},
"side": {
"type": "string"
},
"symbol": {
"type": "string"
},
"timeInForce": {
"type": "string"
},
"updatedTime": {
"type": "integer",
"format": "int64"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer",
"format": "int32"
}
}
}
Fields§
§rows: Vec<MarginForceLiquidationRecResponseRowsItem>
§total: i32
Trait Implementations§
Source§impl Clone for MarginForceLiquidationRecResponse
impl Clone for MarginForceLiquidationRecResponse
Source§fn clone(&self) -> MarginForceLiquidationRecResponse
fn clone(&self) -> MarginForceLiquidationRecResponse
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 MarginForceLiquidationRecResponse
impl<'de> Deserialize<'de> for MarginForceLiquidationRecResponse
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<&MarginForceLiquidationRecResponse> for MarginForceLiquidationRecResponse
impl From<&MarginForceLiquidationRecResponse> for MarginForceLiquidationRecResponse
Source§fn from(value: &MarginForceLiquidationRecResponse) -> Self
fn from(value: &MarginForceLiquidationRecResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarginForceLiquidationRecResponse
impl RefUnwindSafe for MarginForceLiquidationRecResponse
impl Send for MarginForceLiquidationRecResponse
impl Sync for MarginForceLiquidationRecResponse
impl Unpin for MarginForceLiquidationRecResponse
impl UnwindSafe for MarginForceLiquidationRecResponse
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