[][src]Trait rustomaton::nfa::ToNfa

pub trait ToNfa<V: Eq + Hash + Display + Copy + Clone + Debug + Ord> {
    fn to_nfa(&self) -> NFA<V>;
}

An interface for structs that can be converted into a NFA.

Required methods

fn to_nfa(&self) -> NFA<V>

Loading content...

Implementors

impl<V: Eq + Hash + Display + Copy + Clone + Debug + Ord> ToNfa<V> for DFA<V>[src]

impl<V: Eq + Hash + Display + Copy + Clone + Debug + Ord> ToNfa<V> for NFA<V>[src]

impl<V: Eq + Hash + Display + Copy + Clone + Debug + Ord> ToNfa<V> for Regex<V>[src]

Loading content...