Skip to main content

BboReferenceAskReader

Trait BboReferenceAskReader 

Source
pub trait BboReferenceAskReader: Send + Sync {
    // Required method
    fn get_reference_asks<'life0, 'life1, 'async_trait>(
        &'life0 self,
        symbols: &'life1 [String],
        cutoff_ts: i64,
    ) -> Pin<Box<dyn Future<Output = HashMap<String, BboReferenceData>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn get_reference_asks<'life0, 'life1, 'async_trait>( &'life0 self, symbols: &'life1 [String], cutoff_ts: i64, ) -> Pin<Box<dyn Future<Output = HashMap<String, BboReferenceData>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§