pub trait __stati_ProgressTrackingAdaptor<T>: Iterator<Item = T> + Sized {
    fn display_bar<'bar, B: 'bar + IsBar + PrecentageBar>(
        self,
        bar: BarWrapper<B>
    ) -> ProgressTracker<Self, B> { ... } }

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