logo
pub trait IntoRegexCharIter<Input: Display> {
    type Iter: Iterator<Item = Result<char, ParameterError<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.

Associated Types

Type of an Iterator performing the expansion.

Required methods

Consumes this AST element returning an Iterator over chars transformable into a Regex.

Implementors