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

Subscribe instruments service.

Required Methods§

source

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

Subscribe instruments filter by a given tag.

Implementors§

source§

impl<S> SubscribeInstrumentsService for S
where S: ExcService<SubscribeInstruments> + Send, S::Future: Send,