pub trait ArchiveAccessorProxyInterface: Send + Sync {
type StreamDiagnosticsResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn stream_diagnostics(
&self,
parameters: &StreamParameters,
stream: Socket,
) -> Self::StreamDiagnosticsResponseFut;
}