pub struct SubAccountCoinFuturesSummary {
pub delivery_account_summary_resp: SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp,
}
Expand description
SubAccountCoinFuturesSummary
JSON schema
{
"type": "object",
"required": [
"deliveryAccountSummaryResp"
],
"properties": {
"deliveryAccountSummaryResp": {
"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§
§delivery_account_summary_resp: SubAccountCoinFuturesSummaryDeliveryAccountSummaryResp
Trait Implementations§
Source§impl Clone for SubAccountCoinFuturesSummary
impl Clone for SubAccountCoinFuturesSummary
Source§fn clone(&self) -> SubAccountCoinFuturesSummary
fn clone(&self) -> SubAccountCoinFuturesSummary
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 Debug for SubAccountCoinFuturesSummary
impl Debug for SubAccountCoinFuturesSummary
Source§impl<'de> Deserialize<'de> for SubAccountCoinFuturesSummary
impl<'de> Deserialize<'de> for SubAccountCoinFuturesSummary
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<&SubAccountCoinFuturesSummary> for SubAccountCoinFuturesSummary
impl From<&SubAccountCoinFuturesSummary> for SubAccountCoinFuturesSummary
Source§fn from(value: &SubAccountCoinFuturesSummary) -> Self
fn from(value: &SubAccountCoinFuturesSummary) -> Self
Converts to this type from the input type.
Source§impl From<SubAccountCoinFuturesSummary> for QuerySubAccountFuturesAccountSummaryResponse
impl From<SubAccountCoinFuturesSummary> for QuerySubAccountFuturesAccountSummaryResponse
Source§fn from(value: SubAccountCoinFuturesSummary) -> Self
fn from(value: SubAccountCoinFuturesSummary) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SubAccountCoinFuturesSummary
impl RefUnwindSafe for SubAccountCoinFuturesSummary
impl Send for SubAccountCoinFuturesSummary
impl Sync for SubAccountCoinFuturesSummary
impl Unpin for SubAccountCoinFuturesSummary
impl UnwindSafe for SubAccountCoinFuturesSummary
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