pub struct TransferCollateralFromMarginAccountResponse {
pub amount: Option<String>,
pub asset: Option<String>,
pub margin_account_id: Option<String>,
pub movement_id: Option<String>,
pub new_equity: Option<String>,
pub new_total_collateral_value: Option<String>,
pub new_withdrawable_collateral: Option<String>,
pub status: Option<String>,
pub strategy_key: Option<String>,
}Expand description
TransferCollateralFromMarginAccountResponse
JSON schema
{
"type": "object",
"properties": {
"amount": {
"type": [
"string",
"null"
]
},
"asset": {
"type": [
"string",
"null"
]
},
"marginAccountId": {
"type": [
"string",
"null"
]
},
"movementId": {
"type": [
"string",
"null"
]
},
"newEquity": {
"type": [
"string",
"null"
]
},
"newTotalCollateralValue": {
"type": [
"string",
"null"
]
},
"newWithdrawableCollateral": {
"type": [
"string",
"null"
]
},
"status": {
"type": [
"string",
"null"
]
},
"strategyKey": {
"type": [
"string",
"null"
]
}
}
}Fields§
§amount: Option<String>§asset: Option<String>§margin_account_id: Option<String>§movement_id: Option<String>§new_equity: Option<String>§new_total_collateral_value: Option<String>§new_withdrawable_collateral: Option<String>§status: Option<String>§strategy_key: Option<String>Trait Implementations§
Source§impl Clone for TransferCollateralFromMarginAccountResponse
impl Clone for TransferCollateralFromMarginAccountResponse
Source§fn clone(&self) -> TransferCollateralFromMarginAccountResponse
fn clone(&self) -> TransferCollateralFromMarginAccountResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TransferCollateralFromMarginAccountResponse
impl<'de> Deserialize<'de> for TransferCollateralFromMarginAccountResponse
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
Auto Trait Implementations§
impl Freeze for TransferCollateralFromMarginAccountResponse
impl RefUnwindSafe for TransferCollateralFromMarginAccountResponse
impl Send for TransferCollateralFromMarginAccountResponse
impl Sync for TransferCollateralFromMarginAccountResponse
impl Unpin for TransferCollateralFromMarginAccountResponse
impl UnsafeUnpin for TransferCollateralFromMarginAccountResponse
impl UnwindSafe for TransferCollateralFromMarginAccountResponse
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