Function download_file

Source
pub async fn download_file<P: AsRef<Path> + Debug>(
    url_str: &str,
    tmp_dir: &P,
    dl_start: impl FnOnce(u64),
    dl_chunk: impl FnMut(u64, u64),
) -> Result<PathBuf>