pub enum InstrumentKind {
Future,
Option,
Spot,
FutureCombo,
OptionCombo,
}Expand description
Instrument kind enumeration
Variants§
Future
Future contract
Option
Option contract
Spot
Spot trading
FutureCombo
Future combo
OptionCombo
Option combo
Trait Implementations§
Source§impl Clone for InstrumentKind
impl Clone for InstrumentKind
Source§fn clone(&self) -> InstrumentKind
fn clone(&self) -> InstrumentKind
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 InstrumentKind
impl Debug for InstrumentKind
Source§impl<'de> Deserialize<'de> for InstrumentKind
impl<'de> Deserialize<'de> for InstrumentKind
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 InstrumentKind
impl PartialEq for InstrumentKind
Source§impl Serialize for InstrumentKind
impl Serialize for InstrumentKind
impl Eq for InstrumentKind
impl StructuralPartialEq for InstrumentKind
Auto Trait Implementations§
impl Freeze for InstrumentKind
impl RefUnwindSafe for InstrumentKind
impl Send for InstrumentKind
impl Sync for InstrumentKind
impl Unpin for InstrumentKind
impl UnwindSafe for InstrumentKind
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