TaggedAutomaton

Trait TaggedAutomaton 

Source
pub trait TaggedAutomaton<T, G>: Automaton<T> {
    // Required method
    fn get_tag(&self, state: &G) -> Option<usize>;
}
Expand description

Deterministic or non-deterministic automaton.

Required Methods§

Source

fn get_tag(&self, state: &G) -> Option<usize>

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§