pub struct MarginExchangeSmallLiabilityHistoryResponse {
pub rows: Vec<MarginExchangeSmallLiabilityHistoryResponseRowsItem>,
pub total: i64,
}
Expand description
MarginExchangeSmallLiabilityHistoryResponse
JSON schema
{
"type": "object",
"required": [
"rows",
"total"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"amount",
"asset",
"bizType",
"targetAmount",
"targetAsset",
"timestamp"
],
"properties": {
"amount": {
"examples": [
"0.00083434"
],
"type": "string"
},
"asset": {
"examples": [
"ETH"
],
"type": "string"
},
"bizType": {
"examples": [
"EXCHANGE_SMALL_LIABILITY"
],
"type": "string"
},
"targetAmount": {
"examples": [
"1.37576819"
],
"type": "string"
},
"targetAsset": {
"examples": [
"BUSD"
],
"type": "string"
},
"timestamp": {
"examples": [
1672801339253
],
"type": "integer",
"format": "int64"
}
}
}
},
"total": {
"examples": [
1
],
"type": "integer"
}
}
}
Fields§
§rows: Vec<MarginExchangeSmallLiabilityHistoryResponseRowsItem>
§total: i64
Trait Implementations§
Source§impl Clone for MarginExchangeSmallLiabilityHistoryResponse
impl Clone for MarginExchangeSmallLiabilityHistoryResponse
Source§fn clone(&self) -> MarginExchangeSmallLiabilityHistoryResponse
fn clone(&self) -> MarginExchangeSmallLiabilityHistoryResponse
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 MarginExchangeSmallLiabilityHistoryResponse
impl<'de> Deserialize<'de> for MarginExchangeSmallLiabilityHistoryResponse
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<&MarginExchangeSmallLiabilityHistoryResponse> for MarginExchangeSmallLiabilityHistoryResponse
impl From<&MarginExchangeSmallLiabilityHistoryResponse> for MarginExchangeSmallLiabilityHistoryResponse
Source§fn from(value: &MarginExchangeSmallLiabilityHistoryResponse) -> Self
fn from(value: &MarginExchangeSmallLiabilityHistoryResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarginExchangeSmallLiabilityHistoryResponse
impl RefUnwindSafe for MarginExchangeSmallLiabilityHistoryResponse
impl Send for MarginExchangeSmallLiabilityHistoryResponse
impl Sync for MarginExchangeSmallLiabilityHistoryResponse
impl Unpin for MarginExchangeSmallLiabilityHistoryResponse
impl UnwindSafe for MarginExchangeSmallLiabilityHistoryResponse
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