pub struct SubAccountUsdtFuturesSummary {
pub future_account_summary_resp: SubAccountUsdtFuturesSummaryFutureAccountSummaryResp,
}
Expand description
SubAccountUsdtFuturesSummary
JSON schema
{
"type": "object",
"required": [
"futureAccountSummaryResp"
],
"properties": {
"futureAccountSummaryResp": {
"type": "object",
"required": [
"asset",
"subAccountList",
"totalInitialMargin",
"totalMaintenanceMargin",
"totalMarginBalance",
"totalOpenOrderInitialMargin",
"totalPositionInitialMargin",
"totalUnrealizedProfit",
"totalWalletBalance"
],
"properties": {
"asset": {
"description": "The sum of BUSD and USDT",
"examples": [
"USD"
],
"type": "string"
},
"subAccountList": {
"type": "array",
"items": {
"type": "object",
"required": [
"asset",
"email",
"totalInitialMargin",
"totalMaintenanceMargin",
"totalMarginBalance",
"totalOpenOrderInitialMargin",
"totalPositionInitialMargin",
"totalUnrealizedProfit",
"totalWalletBalance"
],
"properties": {
"asset": {
"description": "The sum of BUSD and USDT",
"examples": [
"USD"
],
"type": "string"
},
"email": {
"examples": [
"123@test.com"
],
"type": "string"
},
"totalInitialMargin": {
"examples": [
"9.00000000"
],
"type": "string"
},
"totalMaintenanceMargin": {
"examples": [
"0.00000000"
],
"type": "string"
},
"totalMarginBalance": {
"examples": [
"22.12659734"
],
"type": "string"
},
"totalOpenOrderInitialMargin": {
"examples": [
"9.00000000"
],
"type": "string"
},
"totalPositionInitialMargin": {
"examples": [
"0.00000000"
],
"type": "string"
},
"totalUnrealizedProfit": {
"examples": [
"0.00000000"
],
"type": "string"
},
"totalWalletBalance": {
"examples": [
"22.12659734"
],
"type": "string"
}
}
}
},
"totalInitialMargin": {
"examples": [
"9.83137400"
],
"type": "string"
},
"totalMaintenanceMargin": {
"examples": [
"0.41568700"
],
"type": "string"
},
"totalMarginBalance": {
"examples": [
"23.03235621"
],
"type": "string"
},
"totalOpenOrderInitialMargin": {
"examples": [
"9.00000000"
],
"type": "string"
},
"totalPositionInitialMargin": {
"examples": [
"0.83137400"
],
"type": "string"
},
"totalUnrealizedProfit": {
"examples": [
"0.03219710"
],
"type": "string"
},
"totalWalletBalance": {
"examples": [
"22.15879444"
],
"type": "string"
}
}
}
}
}
Fields§
§future_account_summary_resp: SubAccountUsdtFuturesSummaryFutureAccountSummaryResp
Trait Implementations§
Source§impl Clone for SubAccountUsdtFuturesSummary
impl Clone for SubAccountUsdtFuturesSummary
Source§fn clone(&self) -> SubAccountUsdtFuturesSummary
fn clone(&self) -> SubAccountUsdtFuturesSummary
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 SubAccountUsdtFuturesSummary
impl Debug for SubAccountUsdtFuturesSummary
Source§impl<'de> Deserialize<'de> for SubAccountUsdtFuturesSummary
impl<'de> Deserialize<'de> for SubAccountUsdtFuturesSummary
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<&SubAccountUsdtFuturesSummary> for SubAccountUsdtFuturesSummary
impl From<&SubAccountUsdtFuturesSummary> for SubAccountUsdtFuturesSummary
Source§fn from(value: &SubAccountUsdtFuturesSummary) -> Self
fn from(value: &SubAccountUsdtFuturesSummary) -> Self
Converts to this type from the input type.
Source§impl From<SubAccountUsdtFuturesSummary> for QuerySubAccountFuturesAccountSummaryResponse
impl From<SubAccountUsdtFuturesSummary> for QuerySubAccountFuturesAccountSummaryResponse
Source§fn from(value: SubAccountUsdtFuturesSummary) -> Self
fn from(value: SubAccountUsdtFuturesSummary) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SubAccountUsdtFuturesSummary
impl RefUnwindSafe for SubAccountUsdtFuturesSummary
impl Send for SubAccountUsdtFuturesSummary
impl Sync for SubAccountUsdtFuturesSummary
impl Unpin for SubAccountUsdtFuturesSummary
impl UnwindSafe for SubAccountUsdtFuturesSummary
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