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