pub type ProgressFn<'a> = dyn Fn(u64, Option<u64>) + 'a;Expand description
Reports download progress as (bytes_downloaded_so_far, total_bytes_if_known).
Invoked synchronously on whatever thread runs the download. Optional — when
None the installer falls back to its console progress bar.