[][src]Trait indicatif::ProgressIterator

pub trait ProgressIterator where
    Self: Sized + Iterator
{ fn progress_with(self, progress: ProgressBar) -> ProgressBarIter<Self>; fn progress(self) -> ProgressBarIter<Self> { ... }
fn progress_count(self, len: u64) -> ProgressBarIter<Self> { ... } }

Wraps an iterator to display its progress.

Required methods

Important traits for ProgressBarIter<T>
fn progress_with(self, progress: ProgressBar) -> ProgressBarIter<Self>

Wrap an iterator with a custom progress bar.

Loading content...

Provided methods

Important traits for ProgressBarIter<T>
fn progress(self) -> ProgressBarIter<Self>

Wrap an iterator with default styling. Attempt to guess iterator length using Iterator::size_hint.

Important traits for ProgressBarIter<T>
fn progress_count(self, len: u64) -> ProgressBarIter<Self>

Wrap an iterator with an explicit element count.

Loading content...

Implementors

impl<S, T: Iterator<Item = S>> ProgressIterator for T[src]

Loading content...