FetchInstrumentsService

Trait FetchInstrumentsService 

Source
pub trait FetchInstrumentsService {
    // Required method
    fn fetch_instruments(
        &mut self,
        tag: &str,
    ) -> BoxFuture<'_, Result<InstrumentStream>>;
}
Expand description

Fetch instruments service.

Required Methods§

Source

fn fetch_instruments( &mut self, tag: &str, ) -> BoxFuture<'_, Result<InstrumentStream>>

Fetch instruments filter by a given tag.

Implementors§