pub trait ToMatcher<'a, S> where
    Self: Sealed,
    S: StateID + 'a, 
{ type Automaton: DFA<ID = S>; fn matcher(&'a self) -> Matcher<'a, S, Self::Automaton>
Notable traits for Matcher<'a, S, A>
impl<'a, S, A> Write for Matcher<'a, S, A> where
    S: StateID,
    A: DFA<ID = S>, 
; }

Associated Types

Required methods

Implementors