Skip to main content

DebugDataIteratorProxyInterface

Trait DebugDataIteratorProxyInterface 

Source
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§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§