pub trait DnsServerWatcherProxyInterface: Send + Sync {
    type WatchServersResponseFut: Future<Output = Result<Vec<DnsServer_>, Error>> + Send;

    // Required method
    fn watch_servers(&self) -> Self::WatchServersResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§