pub trait DebugDataIteratorProxyInterface: Send + Sync {
type GetNextResponseFut: Future<Output = Result<Vec<DebugData>, Error>> + Send;
type GetNextCompressedResponseFut: Future<Output = Result<Vec<DebugData>, Error>> + Send;
// Required methods
fn get_next(&self) -> Self::GetNextResponseFut;
fn get_next_compressed(&self) -> Self::GetNextCompressedResponseFut;
}