pub trait RawEventHandler: Send + Sync {
    fn raw_event<'life0, 'async_trait>(
        &'life0 self,
        _ctx: Context,
        _ev: Event
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
, { ... } }
Available on crate feature client only.
Expand description

This core trait for handling raw events

Provided Methods

Dispatched when any event occurs

Implementors