pub struct PostMarginIsolatedAccountResponse {
pub success: bool,
pub symbol: String,
}
Expand description
PostMarginIsolatedAccountResponse
JSON schema
{
"type": "object",
"required": [
"success",
"symbol"
],
"properties": {
"success": {
"type": "boolean"
},
"symbol": {
"examples": [
"BTCUSDT"
],
"type": "string"
}
}
}
Fields§
§success: bool
§symbol: String
Trait Implementations§
Source§impl Clone for PostMarginIsolatedAccountResponse
impl Clone for PostMarginIsolatedAccountResponse
Source§fn clone(&self) -> PostMarginIsolatedAccountResponse
fn clone(&self) -> PostMarginIsolatedAccountResponse
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 PostMarginIsolatedAccountResponse
impl<'de> Deserialize<'de> for PostMarginIsolatedAccountResponse
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<&PostMarginIsolatedAccountResponse> for PostMarginIsolatedAccountResponse
impl From<&PostMarginIsolatedAccountResponse> for PostMarginIsolatedAccountResponse
Source§fn from(value: &PostMarginIsolatedAccountResponse) -> Self
fn from(value: &PostMarginIsolatedAccountResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PostMarginIsolatedAccountResponse
impl RefUnwindSafe for PostMarginIsolatedAccountResponse
impl Send for PostMarginIsolatedAccountResponse
impl Sync for PostMarginIsolatedAccountResponse
impl Unpin for PostMarginIsolatedAccountResponse
impl UnwindSafe for PostMarginIsolatedAccountResponse
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