pub trait ProgressExt: Sized + Iterator {
// Provided methods
fn progress_bar<'a>(
self,
task: impl Into<Cow<'a, str>>,
) -> BarIter<'a, Self> { ... }
fn progress_dots<'a>(
self,
task: impl Into<Cow<'a, str>>,
) -> DotsIter<'a, Self> { ... }
}Available on crate feature
progress only.Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".