pub enum ConvertAccountType {
Uta,
Funding,
Inverse,
Spot,
Contract,
}Variants§
Uta
Unified Trading Account
Funding
Funding Account
Inverse
Inverse Derivatives Account (no USDT in this wallet))
Spot
Spot Account
Contract
Derivatives Account (contain USDT in this wallet)
Trait Implementations§
Source§impl Clone for ConvertAccountType
impl Clone for ConvertAccountType
Source§fn clone(&self) -> ConvertAccountType
fn clone(&self) -> ConvertAccountType
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 ConvertAccountType
Source§impl Debug for ConvertAccountType
impl Debug for ConvertAccountType
Source§impl<'de> Deserialize<'de> for ConvertAccountType
impl<'de> Deserialize<'de> for ConvertAccountType
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 ConvertAccountType
impl PartialEq for ConvertAccountType
Source§fn eq(&self, other: &ConvertAccountType) -> bool
fn eq(&self, other: &ConvertAccountType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConvertAccountType
impl Serialize for ConvertAccountType
impl StructuralPartialEq for ConvertAccountType
Auto Trait Implementations§
impl Freeze for ConvertAccountType
impl RefUnwindSafe for ConvertAccountType
impl Send for ConvertAccountType
impl Sync for ConvertAccountType
impl Unpin for ConvertAccountType
impl UnsafeUnpin for ConvertAccountType
impl UnwindSafe for ConvertAccountType
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