Skip to main content

OrderBookClient

Trait OrderBookClient 

Source
pub trait OrderBookClient: Send + Sync {
    // Required method
    fn fetch_order_book<'life0, 'life1, 'async_trait>(
        &'life0 self,
        pair_symbol: &'life1 str,
    ) -> Pin<Box<dyn Future<Output = Result<OrderBook>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

Trait for clients that can fetch an order book snapshot.

Required Methods§

Source

fn fetch_order_book<'life0, 'life1, 'async_trait>( &'life0 self, pair_symbol: &'life1 str, ) -> Pin<Box<dyn Future<Output = Result<OrderBook>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Fetch the current order book for the given pair symbol.

Implementors§