pub trait TickerClient: Send + Sync {
// Required method
fn fetch_ticker<'life0, 'life1, 'async_trait>(
&'life0 self,
pair_symbol: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Ticker>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
Trait for clients that can fetch a 24h ticker.