pub trait WatcherV6ProxyInterface: Send + Sync {
type WatchResponseFut: Future<Output = Result<Vec<EventV6>, Error>> + Send;
// Required method
fn watch(&self) -> Self::WatchResponseFut;
}
pub trait WatcherV6ProxyInterface: Send + Sync {
type WatchResponseFut: Future<Output = Result<Vec<EventV6>, Error>> + Send;
// Required method
fn watch(&self) -> Self::WatchResponseFut;
}