Skip to main content

OriginatorExt

Trait OriginatorExt 

Source
pub trait OriginatorExt {
    // Required methods
    fn phase_item<'p, 'e, P, E>(&mut self, phase: P, item: E)
       where P: Into<Count<'p>>,
             E: Into<Count<'e>>;
    fn phase<'p, P>(&mut self, phase: P, len: usize)
       where P: Into<Count<'p>>;
    fn item<'s, S>(&mut self, item: usize, desc: S)
       where S: Into<Cow<'s, str>>;
}

Required Methods§

Source

fn phase_item<'p, 'e, P, E>(&mut self, phase: P, item: E)
where P: Into<Count<'p>>, E: Into<Count<'e>>,

Source

fn phase<'p, P>(&mut self, phase: P, len: usize)
where P: Into<Count<'p>>,

Source

fn item<'s, S>(&mut self, item: usize, desc: S)
where S: Into<Cow<'s, str>>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§