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;
}