pub enum IsIsolated {
True,
False,
}Expand description
Whether a margin operation targets the isolated or cross-margin account.
Serialised as the string "TRUE" / "FALSE" that Binance expects.
Variants§
Trait Implementations§
Source§impl Clone for IsIsolated
impl Clone for IsIsolated
Source§fn clone(&self) -> IsIsolated
fn clone(&self) -> IsIsolated
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 moreimpl Copy for IsIsolated
Source§impl Debug for IsIsolated
impl Debug for IsIsolated
Source§impl<'de> Deserialize<'de> for IsIsolated
impl<'de> Deserialize<'de> for IsIsolated
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 PartialEq for IsIsolated
impl PartialEq for IsIsolated
Source§fn eq(&self, other: &IsIsolated) -> bool
fn eq(&self, other: &IsIsolated) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IsIsolated
impl Serialize for IsIsolated
impl StructuralPartialEq for IsIsolated
Auto Trait Implementations§
impl Freeze for IsIsolated
impl RefUnwindSafe for IsIsolated
impl Send for IsIsolated
impl Sync for IsIsolated
impl Unpin for IsIsolated
impl UnsafeUnpin for IsIsolated
impl UnwindSafe for IsIsolated
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