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