Trait Enumerator3

Source
pub trait Enumerator3: Op3 {
    // Provided method
    fn enumerate(
        &self,
        this: &'static Op3Enum,
        exec: &'static Executor,
        nt: [usize; 3],
    ) -> Result<(), ()> { ... }
}
Expand description

An enumerator for a specific production rule.

Provided Methods§

Source

fn enumerate( &self, this: &'static Op3Enum, exec: &'static Executor, nt: [usize; 3], ) -> 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.

Implementors§