pub trait FilterLoader: Send + 'static {
// Required method
fn load<'async_trait>(
self: Box<Self>,
) -> Pin<Box<dyn Future<Output = Result<RowAddrMask>> + Send + 'async_trait>>
where Self: 'async_trait;
}Expand description
A trait to be implemented by anything supplying a prefilter row addr mask
This trait is for internal use only and has no stability guarantees.