Struct regex_syntax::ast::Repetition  
source · pub struct Repetition {
    pub span: Span,
    pub op: RepetitionOp,
    pub greedy: bool,
    pub ast: Box<Ast>,
}Expand description
A repetition operation applied to a regular expression.
Fields§
§span: SpanThe span of this operation.
op: RepetitionOpThe actual operation.
greedy: boolWhether this operation was applied greedily or not.
ast: Box<Ast>The regular expression under repetition.
Trait Implementations§
source§impl Clone for Repetition
 
impl Clone for Repetition
source§fn clone(&self) -> Repetition
 
fn clone(&self) -> Repetition
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for Repetition
 
impl Debug for Repetition
source§impl PartialEq<Repetition> for Repetition
 
impl PartialEq<Repetition> for Repetition
source§fn eq(&self, other: &Repetition) -> bool
 
fn eq(&self, other: &Repetition) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.