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 fetching order book data from exchange APIs.
Required Methods§
Sourcefn 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,
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 (e.g., PUSD_USDT).