Available on crate feature
into-regex only.Expand description
Cucumber Expressions AST into Regex expansion.
Follows original production rules.
Re-exports§
pub use self::parameters::Provider as ParametersProvider;pub use self::parameters::WithCustom as WithCustomParameters;
Modules§
- parameters
- Support for custom
Parameters.
Structs§
- Escape
ForRegex Iteratorfor escaping^,$,[,],(,),{,},.,|,?,*,+with\, and removing it for otherchars.- Owned
Chars - Like
str::CharsIterator, but owns itsString. - Skip
Last Iteratorfor skipping a lastItem.
Enums§
- Error
- Possible errors while parsing
Inputrepresenting a Cucumber Expression and expanding it into aRegex. - Parameter
Error - Possible
Parametererrors being used in anExpression.
Traits§
- Into
Regex Char Iter - Expansion of a Cucumber Expressions AST element into a
Regexby producing acharsIteratorfollowing original production rules.