pub trait NotificationSink: Send + Sync {
// Required method
fn notify<'a>(
&'a self,
notification: Notification,
) -> BoxRpcFuture<'a, Result<(), RuntimeError>>;
}pub trait NotificationSink: Send + Sync {
// Required method
fn notify<'a>(
&'a self,
notification: Notification,
) -> BoxRpcFuture<'a, Result<(), RuntimeError>>;
}