Trait Progressable

Source
pub trait Progressable<T>: Iterator<Item = T>
where Self: Sized + 'static,
{ // Provided method fn prog(self) -> Progress<T> { ... } }

Provided Methods§

Source

fn prog(self) -> Progress<T>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T, V> Progressable<V> for T
where T: Iterator<Item = V> + 'static,