pub trait __stati_ProgressTrackingAdaptor<T>: Iterator<Item = T> + Sized {
    fn display_bar<'bar, B: 'bar + IsBar + IteratorProgress, E: Any, W: IsBarWrapper<Bar = B, Error = E>>(
        self,
        bar: W
    ) -> ProgressTracker<Self, E, B, W> { ... } }

Provided methods

Takes controll of a progress bar (or finishes a builder), displaying the iterators progress

currently VERY experimental, and WILL break, mainly with iterators that do not have a good size_hint function

Implementors