pub trait Enumerator1: Op1 {
// Provided method
fn enumerate(
&self,
this: &'static Op1Enum,
exec: &'static Executor,
opnt: [usize; 1],
) -> Result<(), ()> { ... }
}
Expand description
An enumerator for a specific production rule.
Provided Methods§
fn enumerate( &self, this: &'static Op1Enum, exec: &'static Executor, opnt: [usize; 1], ) -> Result<(), ()>
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.