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