Struct crypto_ws_client::OkexWSClient
source · [−]pub struct OkexWSClient { /* private fields */ }Expand description
The WebSocket client for OKEx.
OKEx has Spot, Future, Swap and Option markets.
- WebSocket API doc: https://www.okex.com/docs/en/
- Trading at:
Implementations
sourceimpl OkexWSClient
impl OkexWSClient
Trait Implementations
sourceimpl WSClient for OkexWSClient
impl WSClient for OkexWSClient
sourcefn subscribe_orderbook(&self, channels: &[String])
fn subscribe_orderbook(&self, channels: &[String])
Subscribes to incremental level2 orderbook channels. Read more
sourcefn subscribe_orderbook_topk(&self, channels: &[String])
fn subscribe_orderbook_topk(&self, channels: &[String])
Subscribes to level2 orderbook snapshot channels. Read more
sourcefn subscribe_l3_orderbook(&self, channels: &[String])
fn subscribe_l3_orderbook(&self, channels: &[String])
Subscribes to level3 orderebook channels. Read more
sourcefn subscribe_bbo(&self, channels: &[String])
fn subscribe_bbo(&self, channels: &[String])
Subscribes to BBO(best bid & offer) channels. Read more
sourcefn subscribe_candlestick(&self, symbol_interval_list: &[(String, usize)])
fn subscribe_candlestick(&self, symbol_interval_list: &[(String, usize)])
Subscribes to candlestick channels. Read more
sourcefn subscribe(&self, channels: &[String])
fn subscribe(&self, channels: &[String])
Subscribes to raw channels, lower level API. Read more
sourcefn unsubscribe(&self, channels: &[String])
fn unsubscribe(&self, channels: &[String])
Unsubscribes from raw channels, lower level API.
Auto Trait Implementations
impl RefUnwindSafe for OkexWSClient
impl Send for OkexWSClient
impl Sync for OkexWSClient
impl Unpin for OkexWSClient
impl UnwindSafe for OkexWSClient
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more