pub trait IntoRegexCharIter<I> {
type Iter: Iterator<Item = Result<char, ParameterError<I>>>;
// Required method
fn into_regex_char_iter(self) -> Self::Iter;
}Available on crate feature
into-regex only.Expand description
Expansion of a Cucumber Expressions AST element into a Regex by
producing a chars Iterator following original production rules.