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;
}Required Associated Types§
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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".