pub struct SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp {
pub asset: String,
pub sub_account_list: Vec<SubAccountCoinFuturesSummaryDeliveryAccountSummaryRespSubAccountListItem>,
pub total_margin_balance_of_btc: String,
pub total_unrealized_profit_of_btc: String,
pub total_wallet_balance_of_btc: String,
}
Expand description
SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
JSON schema
{
"type": "object",
"required": [
"asset",
"subAccountList",
"totalMarginBalanceOfBTC",
"totalUnrealizedProfitOfBTC",
"totalWalletBalanceOfBTC"
],
"properties": {
"asset": {
"examples": [
"BTC"
],
"type": "string"
},
"subAccountList": {
"type": "array",
"items": {
"type": "object",
"required": [
"asset",
"email",
"totalMarginBalance",
"totalUnrealizedProfit",
"totalWalletBalance"
],
"properties": {
"asset": {
"examples": [
"BTC"
],
"type": "string"
},
"email": {
"examples": [
"123@test.com"
],
"type": "string"
},
"totalMarginBalance": {
"examples": [
22.12659734
],
"type": "string"
},
"totalUnrealizedProfit": {
"examples": [
0.0
],
"type": "string"
},
"totalWalletBalance": {
"examples": [
22.12659734
],
"type": "string"
}
}
}
},
"totalMarginBalanceOfBTC": {
"examples": [
25.03221121
],
"type": "string"
},
"totalUnrealizedProfitOfBTC": {
"examples": [
0.1223341
],
"type": "string"
},
"totalWalletBalanceOfBTC": {
"examples": [
22.15879444
],
"type": "string"
}
}
}
Fields§
§asset: String
§sub_account_list: Vec<SubAccountCoinFuturesSummaryDeliveryAccountSummaryRespSubAccountListItem>
§total_margin_balance_of_btc: String
§total_unrealized_profit_of_btc: String
§total_wallet_balance_of_btc: String
Trait Implementations§
Source§impl Clone for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
impl Clone for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
Source§fn clone(&self) -> SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
fn clone(&self) -> SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
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 SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
impl<'de> Deserialize<'de> for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
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<&SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp> for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
impl From<&SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp> for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
Source§fn from(value: &SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp) -> Self
fn from(value: &SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
impl RefUnwindSafe for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
impl Send for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
impl Sync for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
impl Unpin for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
impl UnwindSafe for SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
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