pub trait NotificationRegistrationProxyInterface: Send + Sync {
    type NewEventReportResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn new_event_report(
        &self,
        payload: &NotificationRegistrationNewEventReportRequest,
    ) -> Self::NewEventReportResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§