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