pub struct ReducePositionMarginResponse {
pub margin_account_id: Option<String>,
pub message: Option<String>,
pub new_isolated_margin: Option<String>,
pub position_id: Option<String>,
pub status: Option<String>,
}Expand description
ReducePositionMarginResponse
JSON schema
{
"type": "object",
"properties": {
"marginAccountId": {
"description": "Margin account UUID for the isolated bucket that was adjusted.",
"type": [
"string",
"null"
]
},
"message": {
"type": [
"string",
"null"
]
},
"newIsolatedMargin": {
"type": [
"string",
"null"
]
},
"positionId": {
"type": [
"string",
"null"
]
},
"status": {
"type": [
"string",
"null"
]
}
}
}Fields§
§margin_account_id: Option<String>Margin account UUID for the isolated bucket that was adjusted.
message: Option<String>§new_isolated_margin: Option<String>§position_id: Option<String>§status: Option<String>Trait Implementations§
Source§impl Clone for ReducePositionMarginResponse
impl Clone for ReducePositionMarginResponse
Source§fn clone(&self) -> ReducePositionMarginResponse
fn clone(&self) -> ReducePositionMarginResponse
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 Debug for ReducePositionMarginResponse
impl Debug for ReducePositionMarginResponse
Source§impl<'de> Deserialize<'de> for ReducePositionMarginResponse
impl<'de> Deserialize<'de> for ReducePositionMarginResponse
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 ReducePositionMarginResponse
impl RefUnwindSafe for ReducePositionMarginResponse
impl Send for ReducePositionMarginResponse
impl Sync for ReducePositionMarginResponse
impl Unpin for ReducePositionMarginResponse
impl UnsafeUnpin for ReducePositionMarginResponse
impl UnwindSafe for ReducePositionMarginResponse
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