Trait IntoSymbol

Source
pub trait IntoSymbol<S: Alphabet> {
    // Required method
    fn s(self) -> Regex<S>;
}

Required Methods§

Source

fn s(self) -> Regex<S>

Implementors§

Source§

impl<S: Alphabet, T> IntoSymbol<S> for T
where T: IntoSymbol<Default<S>>,