pub trait CompositeInfoIteratorProxyInterface: Send + Sync {
type GetNextResponseFut: Future<Output = Result<Vec<CompositeNodeInfo>, Error>> + Send;
// Required method
fn get_next(&self) -> Self::GetNextResponseFut;
}
pub trait CompositeInfoIteratorProxyInterface: Send + Sync {
type GetNextResponseFut: Future<Output = Result<Vec<CompositeNodeInfo>, Error>> + Send;
// Required method
fn get_next(&self) -> Self::GetNextResponseFut;
}