pub struct SubAccountTransactionStatisticsResponseTradeInfoVosItem {
pub btc: Option<f32>,
pub btc_futures: Option<f32>,
pub btc_margin: Option<f32>,
pub busd: Option<f32>,
pub busd_futures: Option<f32>,
pub busd_margin: Option<f32>,
pub date: Option<i64>,
pub user_id: Option<i64>,
}
Expand description
SubAccountTransactionStatisticsResponseTradeInfoVosItem
JSON schema
{
"type": "object",
"properties": {
"btc": {
"examples": [
0
],
"type": "number",
"format": "float"
},
"btcFutures": {
"examples": [
0
],
"type": "number",
"format": "float"
},
"btcMargin": {
"examples": [
0
],
"type": "number",
"format": "float"
},
"busd": {
"examples": [
0
],
"type": "number",
"format": "float"
},
"busdFutures": {
"examples": [
0
],
"type": "number",
"format": "float"
},
"busdMargin": {
"examples": [
0
],
"type": "number",
"format": "float"
},
"date": {
"examples": [
1676851200000
],
"type": "integer",
"format": "int64"
},
"userId": {
"examples": [
1000138138384
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§btc: Option<f32>
§btc_futures: Option<f32>
§btc_margin: Option<f32>
§busd: Option<f32>
§busd_futures: Option<f32>
§busd_margin: Option<f32>
§date: Option<i64>
§user_id: Option<i64>
Trait Implementations§
Source§impl Clone for SubAccountTransactionStatisticsResponseTradeInfoVosItem
impl Clone for SubAccountTransactionStatisticsResponseTradeInfoVosItem
Source§fn clone(&self) -> SubAccountTransactionStatisticsResponseTradeInfoVosItem
fn clone(&self) -> SubAccountTransactionStatisticsResponseTradeInfoVosItem
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 SubAccountTransactionStatisticsResponseTradeInfoVosItem
impl<'de> Deserialize<'de> for SubAccountTransactionStatisticsResponseTradeInfoVosItem
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<&SubAccountTransactionStatisticsResponseTradeInfoVosItem> for SubAccountTransactionStatisticsResponseTradeInfoVosItem
impl From<&SubAccountTransactionStatisticsResponseTradeInfoVosItem> for SubAccountTransactionStatisticsResponseTradeInfoVosItem
Source§fn from(value: &SubAccountTransactionStatisticsResponseTradeInfoVosItem) -> Self
fn from(value: &SubAccountTransactionStatisticsResponseTradeInfoVosItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SubAccountTransactionStatisticsResponseTradeInfoVosItem
impl RefUnwindSafe for SubAccountTransactionStatisticsResponseTradeInfoVosItem
impl Send for SubAccountTransactionStatisticsResponseTradeInfoVosItem
impl Sync for SubAccountTransactionStatisticsResponseTradeInfoVosItem
impl Unpin for SubAccountTransactionStatisticsResponseTradeInfoVosItem
impl UnwindSafe for SubAccountTransactionStatisticsResponseTradeInfoVosItem
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