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
Parameter
s.
Structs§
- Escape
ForRegex Iterator
for escaping^
,$
,[
,]
,(
,)
,{
,}
,.
,|
,?
,*
,+
with\
, and removing it for otherchar
s.- Owned
Chars - Like
str::Chars
Iterator
, but owns itsString
. - Skip
Last Iterator
for skipping a lastItem
.
Enums§
- Error
- Possible errors while parsing
Input
representing a Cucumber Expression and expanding it into aRegex
. - Parameter
Error - Possible
Parameter
errors being used in anExpression
.
Traits§
- Into
Regex Char Iter - Expansion of a Cucumber Expressions AST element into a
Regex
by producing achar
sIterator
following original production rules.