pub type Progress<'a> = &'a (dyn Fn(&str) + Sync);Expand description
A sink for progress messages, called once per major stage.
1.x printed stage timings to stdout behind a verbose: bool. A library shouldn’t
write to the process’s streams, so the caller supplies the sink.