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§
source§impl<'arbitrary> Arbitrary<'arbitrary> for Repetition
impl<'arbitrary> Arbitrary<'arbitrary> for Repetition
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moresource§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.6.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 for Repetition
impl PartialEq for Repetition
impl Eq for Repetition
impl StructuralPartialEq for Repetition
Auto Trait Implementations§
impl Freeze for Repetition
impl RefUnwindSafe for Repetition
impl Send for Repetition
impl Sync for Repetition
impl Unpin for Repetition
impl UnwindSafe for Repetition
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)