pub trait NotifierProxyInterface: Send + Sync {
type WatchStateResponseFut: Future<Output = Result<State, Error>> + Send;
// Required method
fn watch_state(&self) -> Self::WatchStateResponseFut;
}
pub trait NotifierProxyInterface: Send + Sync {
type WatchStateResponseFut: Future<Output = Result<State, Error>> + Send;
// Required method
fn watch_state(&self) -> Self::WatchStateResponseFut;
}