pub trait WatcherProxyInterface: Send + Sync {
type WatchResponseFut: Future<Output = Result<Vec<Information>, Error>> + Send;
// Required method
fn watch(&self, ids: &[Identifier]) -> Self::WatchResponseFut;
}
pub trait WatcherProxyInterface: Send + Sync {
type WatchResponseFut: Future<Output = Result<Vec<Information>, Error>> + Send;
// Required method
fn watch(&self, ids: &[Identifier]) -> Self::WatchResponseFut;
}