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