pub trait ClientProxyInterface: Send + Sync {
type DownloadBlobResponseFut: Future<Output = Result<ClientDownloadBlobResult, Error>> + Send;
// Required method
fn download_blob(
&self,
url: &str,
destination: ClientEnd<BlobWriterMarker>,
header_timeout: i64,
body_timeout: i64,
resumption_attempt_limit: u32,
) -> Self::DownloadBlobResponseFut;
}Required Associated Types§
type DownloadBlobResponseFut: Future<Output = Result<ClientDownloadBlobResult, Error>> + Send
Required Methods§
fn download_blob( &self, url: &str, destination: ClientEnd<BlobWriterMarker>, header_timeout: i64, body_timeout: i64, resumption_attempt_limit: u32, ) -> Self::DownloadBlobResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".