Enum regex_syntax::Repeater [] [src]

pub enum Repeater {
    ZeroOrOne,
    ZeroOrMore,
    OneOrMore,
    Range {
        min: u32,
        max: Option<u32>,
    },
}

The type of a repeat operator expression.

Variants

Match zero or one (?).

Match zero or more (*).

Match one or more (+).

Match for at least min and at most max ({m,n}).

When max is None, there is no upper bound on the number of matches.

Fields of Range

Lower bound on the number of matches.

Optional upper bound on the number of matches.

Trait Implementations

impl Clone for Repeater
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Repeater
[src]

impl Debug for Repeater
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Repeater
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for Repeater
[src]

impl Display for Repeater
[src]

[src]

Formats the value using the given formatter. Read more