Trait cucumber_expressions::expand::IntoRegexCharIter
source ·
[−]pub trait IntoRegexCharIter<Input: Display> {
type Iter: Iterator<Item = Result<char, UnknownParameterError<Input>>>;
fn into_regex_char_iter(self) -> Self::Iter;
}Expand description
Expansion of a Cucumber Expressions AST element into a Regex by
producing a chars Iterator following original production rules.