pub enum TradingProducts {
Perpetual,
Futures,
Options,
FutureCombos,
OptionCombos,
Spots,
}Variants§
Trait Implementations§
Source§impl Clone for TradingProducts
impl Clone for TradingProducts
Source§fn clone(&self) -> TradingProducts
fn clone(&self) -> TradingProducts
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 TradingProducts
impl Debug for TradingProducts
Source§impl Default for TradingProducts
impl Default for TradingProducts
Source§fn default() -> TradingProducts
fn default() -> TradingProducts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TradingProducts
impl<'de> Deserialize<'de> for TradingProducts
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 TradingProducts
impl PartialEq for TradingProducts
Source§impl Serialize for TradingProducts
impl Serialize for TradingProducts
impl StructuralPartialEq for TradingProducts
Auto Trait Implementations§
impl Freeze for TradingProducts
impl RefUnwindSafe for TradingProducts
impl Send for TradingProducts
impl Sync for TradingProducts
impl Unpin for TradingProducts
impl UnwindSafe for TradingProducts
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