Trait Inject

Source
pub trait Inject<'a> {
    // Required method
    fn inject(&mut self, instr: Operator<'a>);

    // Provided method
    fn inject_all(&mut self, instrs: &[Operator<'a>]) -> &mut Self { ... }
}
Expand description

Defines Injection behaviour at the current location of the Iterator

Required Methods§

Source

fn inject(&mut self, instr: Operator<'a>)

Inject an operator at the current location

Provided Methods§

Source

fn inject_all(&mut self, instrs: &[Operator<'a>]) -> &mut Self

Inject multiple operators at the current location

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<'a> Inject<'a> for FunctionBuilder<'a>

Source§

impl<'b> Inject<'b> for FunctionModifier<'_, 'b>

Source§

impl<'b> Inject<'b> for ComponentIterator<'_, 'b>

Source§

impl<'b> Inject<'b> for ModuleIterator<'_, 'b>