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§
fn stream_diagnostics( &self, stream_parameters: &StreamParameters, result_stream: ServerEnd<BatchIteratorMarker>, ) -> Result<(), Error>
fn wait_for_ready(&self) -> Self::WaitForReadyResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".