pub enum CopyTrading {
None,
Both,
UtaOnly,
NormalOnly,
}Variants§
None
Regardless of normal account or UTA account, this trading pair does not support copy trading
Both
For both normal account and UTA account, this trading pair supports copy trading
UtaOnly
Only for UTA account,this trading pair supports copy trading
NormalOnly
Only for normal account, this trading pair supports copy trading
Trait Implementations§
Source§impl Clone for CopyTrading
impl Clone for CopyTrading
Source§fn clone(&self) -> CopyTrading
fn clone(&self) -> CopyTrading
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 CopyTrading
Source§impl Debug for CopyTrading
impl Debug for CopyTrading
Source§impl<'de> Deserialize<'de> for CopyTrading
impl<'de> Deserialize<'de> for CopyTrading
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 CopyTrading
impl PartialEq for CopyTrading
Source§fn eq(&self, other: &CopyTrading) -> bool
fn eq(&self, other: &CopyTrading) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CopyTrading
impl Serialize for CopyTrading
impl StructuralPartialEq for CopyTrading
Auto Trait Implementations§
impl Freeze for CopyTrading
impl RefUnwindSafe for CopyTrading
impl Send for CopyTrading
impl Sync for CopyTrading
impl Unpin for CopyTrading
impl UnsafeUnpin for CopyTrading
impl UnwindSafe for CopyTrading
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