Skip to main content

ProgressExt

Trait ProgressExt 

Source
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§

Source

fn progress_bar<'a>(self, task: impl Into<Cow<'a, str>>) -> BarIter<'a, Self>

Track the iterator progress using inline progress bar.

Source

fn progress_dots<'a>(self, task: impl Into<Cow<'a, str>>) -> DotsIter<'a, Self>

Track the iterator progress using inline dots.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§