pub enum SubscriptionChannel {
Ticker(String),
OrderBook(String),
Trades(String),
UserOrders,
UserTrades,
Unknown(String),
}Use model::SubscriptionChannel instead which supports all channel types
Expand description
Subscription channels (legacy enum - use model::SubscriptionChannel for full support)
Variants§
Ticker(String)
Use model::SubscriptionChannel instead which supports all channel types
Ticker data for a specific instrument
OrderBook(String)
Use model::SubscriptionChannel instead which supports all channel types
Order book data for a specific instrument
Trades(String)
Use model::SubscriptionChannel instead which supports all channel types
Trade data for a specific instrument
UserOrders
Use model::SubscriptionChannel instead which supports all channel types
User’s order updates
UserTrades
Use model::SubscriptionChannel instead which supports all channel types
User’s trade updates
Unknown(String)
Use model::SubscriptionChannel instead which supports all channel types
Unknown or unrecognized channel
Trait Implementations§
Source§impl Clone for SubscriptionChannel
impl Clone for SubscriptionChannel
Source§fn clone(&self) -> SubscriptionChannel
fn clone(&self) -> SubscriptionChannel
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more