pub trait Originator {
// Required methods
fn report(&mut self, info: ProgressInfo<'_>);
fn phase_begin_(&mut self, phase: Count<'_>, len: usize);
fn item_(&mut self, item: usize, desc: Cow<'_, str>);
}Required Methods§
fn report(&mut self, info: ProgressInfo<'_>)
fn phase_begin_(&mut self, phase: Count<'_>, len: usize)
fn item_(&mut self, item: usize, desc: Cow<'_, str>)
Trait Implementations§
Source§impl OriginatorExt for &mut dyn Originator
impl OriginatorExt for &mut dyn Originator
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".