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