Trait ArchiveAccessorProxyInterface

Source
pub trait ArchiveAccessorProxyInterface: Send + Sync {
    type WaitForReadyResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required methods
    fn stream_diagnostics(
        &self,
        stream_parameters: &StreamParameters,
        result_stream: ServerEnd<BatchIteratorMarker>,
    ) -> Result<(), Error>;
    fn wait_for_ready(&self) -> Self::WaitForReadyResponseFut;
}

Required Associated Types§

Required Methods§

Source

fn stream_diagnostics( &self, stream_parameters: &StreamParameters, result_stream: ServerEnd<BatchIteratorMarker>, ) -> Result<(), Error>

Source

fn wait_for_ready(&self) -> Self::WaitForReadyResponseFut

Implementors§