Trait EventSubscriber

Source
pub trait EventSubscriber {
    // Required method
    fn callback_failed_result_get<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<CallbackFailedList>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn callback_failed_result_get<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<CallbackFailedList>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

获取推送失败的事件列表 api: https://open.dingtalk.com/document/orgapp-server/obtain-the-event-list-of-failed-push-messages

Implementors§