pub trait DnsServerWatcherProxyInterface: Send + Sync {
type WatchServersResponseFut: Future<Output = Result<Vec<DnsServer_>, Error>> + Send;
// Required method
fn watch_servers(&self) -> Self::WatchServersResponseFut;
}
pub trait DnsServerWatcherProxyInterface: Send + Sync {
type WatchServersResponseFut: Future<Output = Result<Vec<DnsServer_>, Error>> + Send;
// Required method
fn watch_servers(&self) -> Self::WatchServersResponseFut;
}