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