pub trait FetchInstrumentsService {
// Required method
fn fetch_instruments(
&mut self,
tag: &str,
) -> BoxFuture<'_, Result<InstrumentStream>>;
}Expand description
Fetch instruments service.
Required Methods§
Sourcefn fetch_instruments(
&mut self,
tag: &str,
) -> BoxFuture<'_, Result<InstrumentStream>>
fn fetch_instruments( &mut self, tag: &str, ) -> BoxFuture<'_, Result<InstrumentStream>>
Fetch instruments filter by a given tag.