We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0748c86 + f82103f commit a31ac61Copy full SHA for a31ac61
download/src/lib.rs
@@ -433,13 +433,15 @@ pub mod curl {
433
pub mod reqwest_be {
434
435
use super::Event;
436
+ use super::TlsBackend;
437
use crate::errors::*;
438
use url::Url;
439
440
pub fn download(
441
_url: &Url,
442
_resume_from: u64,
443
_callback: &dyn Fn(Event<'_>) -> Result<()>,
444
+ _tls: TlsBackend,
445
) -> Result<()> {
446
Err(ErrorKind::BackendUnavailable("reqwest").into())
447
}
0 commit comments