pub struct MarginExchangeSmallLiabilityHistoryResponseRowsItem {
pub amount: String,
pub asset: String,
pub biz_type: String,
pub target_amount: String,
pub target_asset: String,
pub timestamp: i64,
}
Expand description
MarginExchangeSmallLiabilityHistoryResponseRowsItem
JSON schema
{
"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"
}
}
}
Fields§
§amount: String
§asset: String
§biz_type: String
§target_amount: String
§target_asset: String
§timestamp: i64
Trait Implementations§
Source§impl Clone for MarginExchangeSmallLiabilityHistoryResponseRowsItem
impl Clone for MarginExchangeSmallLiabilityHistoryResponseRowsItem
Source§fn clone(&self) -> MarginExchangeSmallLiabilityHistoryResponseRowsItem
fn clone(&self) -> MarginExchangeSmallLiabilityHistoryResponseRowsItem
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 MarginExchangeSmallLiabilityHistoryResponseRowsItem
impl<'de> Deserialize<'de> for MarginExchangeSmallLiabilityHistoryResponseRowsItem
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<&MarginExchangeSmallLiabilityHistoryResponseRowsItem> for MarginExchangeSmallLiabilityHistoryResponseRowsItem
impl From<&MarginExchangeSmallLiabilityHistoryResponseRowsItem> for MarginExchangeSmallLiabilityHistoryResponseRowsItem
Source§fn from(value: &MarginExchangeSmallLiabilityHistoryResponseRowsItem) -> Self
fn from(value: &MarginExchangeSmallLiabilityHistoryResponseRowsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarginExchangeSmallLiabilityHistoryResponseRowsItem
impl RefUnwindSafe for MarginExchangeSmallLiabilityHistoryResponseRowsItem
impl Send for MarginExchangeSmallLiabilityHistoryResponseRowsItem
impl Sync for MarginExchangeSmallLiabilityHistoryResponseRowsItem
impl Unpin for MarginExchangeSmallLiabilityHistoryResponseRowsItem
impl UnwindSafe for MarginExchangeSmallLiabilityHistoryResponseRowsItem
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