Trait FilterLoader

Source
pub trait FilterLoader: Send + 'static {
    // Required method
    fn load<'async_trait>(
        self: Box<Self>,
    ) -> Pin<Box<dyn Future<Output = Result<RowIdMask>> + Send + 'async_trait>>
       where Self: 'async_trait;
}
Expand description

A trait to be implemented by anything supplying a prefilter row id mask

This trait is for internal use only and has no stability guarantees.

Required Methods§

Source

fn load<'async_trait>( self: Box<Self>, ) -> Pin<Box<dyn Future<Output = Result<RowIdMask>> + Send + 'async_trait>>
where Self: 'async_trait,

Implementors§