pub enum InstrumentsInfo {
Inverse {
next_page_cursor: String,
list: Vec<InverseLinearInstrumentsInfo>,
},
Linear {
next_page_cursor: String,
list: Vec<InverseLinearInstrumentsInfo>,
},
Option {
next_page_cursor: String,
list: Vec<OptionInstrumentsInfo>,
},
Spot {
next_page_cursor: Option<String>,
list: Vec<SpotInstrumentsInfo>,
},
}Variants§
Trait Implementations§
Source§impl Debug for InstrumentsInfo
impl Debug for InstrumentsInfo
Source§impl<'de> Deserialize<'de> for InstrumentsInfo
impl<'de> Deserialize<'de> for InstrumentsInfo
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 InstrumentsInfo
impl PartialEq for InstrumentsInfo
Source§fn eq(&self, other: &InstrumentsInfo) -> bool
fn eq(&self, other: &InstrumentsInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InstrumentsInfo
Auto Trait Implementations§
impl Freeze for InstrumentsInfo
impl RefUnwindSafe for InstrumentsInfo
impl Send for InstrumentsInfo
impl Sync for InstrumentsInfo
impl Unpin for InstrumentsInfo
impl UnsafeUnpin for InstrumentsInfo
impl UnwindSafe for InstrumentsInfo
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