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