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