pub struct MarginIsolatedAccountLimitResponse {
pub enabled_account: i64,
pub max_account: i64,
}
Expand description
MarginIsolatedAccountLimitResponse
JSON schema
{
"type": "object",
"required": [
"enabledAccount",
"maxAccount"
],
"properties": {
"enabledAccount": {
"examples": [
5
],
"type": "integer",
"format": "int64"
},
"maxAccount": {
"examples": [
20
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§enabled_account: i64
§max_account: i64
Trait Implementations§
Source§impl Clone for MarginIsolatedAccountLimitResponse
impl Clone for MarginIsolatedAccountLimitResponse
Source§fn clone(&self) -> MarginIsolatedAccountLimitResponse
fn clone(&self) -> MarginIsolatedAccountLimitResponse
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 MarginIsolatedAccountLimitResponse
impl<'de> Deserialize<'de> for MarginIsolatedAccountLimitResponse
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<&MarginIsolatedAccountLimitResponse> for MarginIsolatedAccountLimitResponse
impl From<&MarginIsolatedAccountLimitResponse> for MarginIsolatedAccountLimitResponse
Source§fn from(value: &MarginIsolatedAccountLimitResponse) -> Self
fn from(value: &MarginIsolatedAccountLimitResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MarginIsolatedAccountLimitResponse
impl RefUnwindSafe for MarginIsolatedAccountLimitResponse
impl Send for MarginIsolatedAccountLimitResponse
impl Sync for MarginIsolatedAccountLimitResponse
impl Unpin for MarginIsolatedAccountLimitResponse
impl UnwindSafe for MarginIsolatedAccountLimitResponse
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