meta_srv::selector

Trait Selector

Source
pub trait Selector: Send + Sync {
    type Context;
    type Output;

    // Required method
    fn select<'life0, 'life1, 'async_trait>(
        &'life0 self,
        ctx: &'life1 Self::Context,
        opts: SelectorOptions,
    ) -> Pin<Box<dyn Future<Output = Result<Self::Output>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Associated Types§

Required Methods§

Source

fn select<'life0, 'life1, 'async_trait>( &'life0 self, ctx: &'life1 Self::Context, opts: SelectorOptions, ) -> Pin<Box<dyn Future<Output = Result<Self::Output>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§