pub trait BloomFilterReader: Sync {
// Required methods
fn range_read<'life0, 'async_trait>(
&'life0 self,
offset: u64,
size: u32,
) -> Pin<Box<dyn Future<Output = Result<Bytes>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn metadata<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<BloomFilterMeta>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
// Provided methods
fn read_vec<'life0, 'life1, 'async_trait>(
&'life0 self,
ranges: &'life1 [Range<u64>],
) -> Pin<Box<dyn Future<Output = Result<Vec<Bytes>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait { ... }
fn bloom_filter<'life0, 'life1, 'async_trait>(
&'life0 self,
loc: &'life1 BloomFilterLoc,
) -> Pin<Box<dyn Future<Output = Result<BloomFilter>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait { ... }
fn bloom_filter_vec<'life0, 'life1, 'async_trait>(
&'life0 self,
locs: &'life1 [BloomFilterLoc],
) -> Pin<Box<dyn Future<Output = Result<Vec<BloomFilter>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait { ... }
}
Expand description
BloomFilterReader
reads the bloom filter from the file.
Required Methods§
Provided Methods§
Sourcefn read_vec<'life0, 'life1, 'async_trait>(
&'life0 self,
ranges: &'life1 [Range<u64>],
) -> Pin<Box<dyn Future<Output = Result<Vec<Bytes>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn read_vec<'life0, 'life1, 'async_trait>(
&'life0 self,
ranges: &'life1 [Range<u64>],
) -> Pin<Box<dyn Future<Output = Result<Vec<Bytes>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Reads bunch of ranges from the file.
Sourcefn bloom_filter<'life0, 'life1, 'async_trait>(
&'life0 self,
loc: &'life1 BloomFilterLoc,
) -> Pin<Box<dyn Future<Output = Result<BloomFilter>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn bloom_filter<'life0, 'life1, 'async_trait>(
&'life0 self,
loc: &'life1 BloomFilterLoc,
) -> Pin<Box<dyn Future<Output = Result<BloomFilter>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Reads a bloom filter with the given location.