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