pub trait BloomDataProvider: Send + Sync {
    // Required method
    fn read_byte<'life0, 'async_trait>(
        &'life0 self,
        index: u64
    ) -> Pin<Box<dyn Future<Output = Result<u8>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Provider for raw filter data

Required Methods§

source

fn read_byte<'life0, 'async_trait>( &'life0 self, index: u64 ) -> Pin<Box<dyn Future<Output = Result<u8>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Read byte from raw filter data

Implementors§