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

Provider for raw filter data

Required Methods

Read byte from raw filter data

Implementors