Enum RepetitionQuantifier
pub enum RepetitionQuantifier {
ZeroOrMore,
OneOrMore,
AtMostOne,
Exactly(u32),
AtLeast(u32),
AtMost(u32),
Range(u32, u32),
}Expand description
Determines the minimum and maximum allowed occurrences of a pattern in a
MATCH_RECOGNIZE operation.
Variants§
ZeroOrMore
*
OneOrMore
+
AtMostOne
?
Exactly(u32)
{n}
AtLeast(u32)
{n,}
AtMost(u32)
{,n}
Range(u32, u32)
`{n,m}