Enum regex_syntax::ast::RepetitionRange
[−]
[src]
pub enum RepetitionRange {
Exactly(u32),
AtLeast(u32),
Bounded(u32, u32),
}A range repetition operator.
Variants
Exactly(u32){m}
AtLeast(u32){m,}
Bounded(u32, u32){m,n}
Methods
impl RepetitionRange[src]
pub fn is_valid(&self) -> bool[src]
Returns true if and only if this repetition range is valid.
The only case where a repetition range is invalid is if it is bounded and its start is greater than its end.
Trait Implementations
impl Clone for RepetitionRange[src]
fn clone(&self) -> RepetitionRange[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for RepetitionRange[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Eq for RepetitionRange[src]
impl PartialEq for RepetitionRange[src]
fn eq(&self, __arg_0: &RepetitionRange) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &RepetitionRange) -> bool[src]
This method tests for !=.