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§
Provided Methods§
Sourcefn inject_all(&mut self, instrs: &[Operator<'a>]) -> &mut Self
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.