EventApplicator

Trait EventApplicator 

Source
pub trait EventApplicator<E: Event>:
    'static
    + Sync
    + Send {
    // Required method
    fn apply<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        event: E,
        ctx: &'life1 mut Context,
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn apply<'life0, 'life1, 'async_trait>( &'life0 mut self, event: E, ctx: &'life1 mut Context, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§