pub trait INotificationResultHandler: Send + Sync {
    // Required method
    fn handle<'life0, 'async_trait>(
        &'life0 mut self,
        result: ExpressResult<NotificationCallbackRequestOk, NotificationCallbackRequestError>
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn handle<'life0, 'async_trait>( &'life0 mut self, result: ExpressResult<NotificationCallbackRequestOk, NotificationCallbackRequestError> ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§