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: Span
The span of this operation.
op: RepetitionOp
The actual operation.
greedy: bool
Whether this operation was applied greedily or not.
ast: Box<Ast>
The regular expression under repetition.
Trait Implementations
sourceimpl Clone for Repetition
impl Clone for Repetition
sourcefn clone(&self) -> Repetition
fn clone(&self) -> Repetition
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for Repetition
impl Debug for Repetition
sourceimpl PartialEq<Repetition> for Repetition
impl PartialEq<Repetition> for Repetition
sourcefn eq(&self, other: &Repetition) -> bool
fn eq(&self, other: &Repetition) -> bool
impl Eq for Repetition
impl StructuralEq for Repetition
impl StructuralPartialEq for Repetition
Auto Trait Implementations
impl RefUnwindSafe for Repetition
impl Send for Repetition
impl Sync for Repetition
impl Unpin for Repetition
impl UnwindSafe for Repetition
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more