MaskEvaluation

Trait MaskEvaluation 

Source
pub trait MaskEvaluation:
    'static
    + Send
    + Sync {
    // Required method
    fn invoke<'life0, 'async_trait>(
        &'life0 self,
        mask: Mask,
    ) -> Pin<Box<dyn Future<Output = VortexResult<Mask>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Refines the given mask, returning a mask equal in length to the input mask.

§Post-conditions

The returned mask MUST have been intersected with the input mask.

Required Methods§

Source

fn invoke<'life0, 'async_trait>( &'life0 self, mask: Mask, ) -> Pin<Box<dyn Future<Output = VortexResult<Mask>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§