pub enum RequestCommand {
Data(RequestCustomData),
Instrument(RequestInstrument),
Instruments(RequestInstruments),
BookSnapshot(RequestBookSnapshot),
BookDeltas(RequestBookDeltas),
BookDepth(RequestBookDepth),
Quotes(RequestQuotes),
Trades(RequestTrades),
FundingRates(RequestFundingRates),
ForwardPrices(RequestForwardPrices),
Bars(RequestBars),
Join(RequestJoin),
}Variants§
Data(RequestCustomData)
Instrument(RequestInstrument)
Instruments(RequestInstruments)
BookSnapshot(RequestBookSnapshot)
BookDeltas(RequestBookDeltas)
BookDepth(RequestBookDepth)
Quotes(RequestQuotes)
Trades(RequestTrades)
FundingRates(RequestFundingRates)
ForwardPrices(RequestForwardPrices)
Bars(RequestBars)
Join(RequestJoin)
Implementations§
Trait Implementations§
Source§impl Clone for RequestCommand
impl Clone for RequestCommand
Source§fn clone(&self) -> RequestCommand
fn clone(&self) -> RequestCommand
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 moreSource§impl Debug for RequestCommand
impl Debug for RequestCommand
Source§impl<'de> Deserialize<'de> for RequestCommand
impl<'de> Deserialize<'de> for RequestCommand
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 RequestCommand
impl PartialEq for RequestCommand
Auto Trait Implementations§
impl Freeze for RequestCommand
impl RefUnwindSafe for RequestCommand
impl Send for RequestCommand
impl Sync for RequestCommand
impl Unpin for RequestCommand
impl UnsafeUnpin for RequestCommand
impl UnwindSafe for RequestCommand
Blanket Implementations§
impl<T> Allocation for T
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