Struct Repetition
struct Repetition { ... }
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.
Implementations
impl Clone for Repetition
fn clone(self: &Self) -> Repetition
impl Debug for Repetition
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl Eq for Repetition
impl Freeze for Repetition
impl PartialEq for Repetition
fn eq(self: &Self, other: &Repetition) -> bool
impl RefUnwindSafe for Repetition
impl Send for Repetition
impl StructuralPartialEq for Repetition
impl Sync for Repetition
impl Unpin for Repetition
impl UnsafeUnpin for Repetition
impl UnwindSafe for Repetition
impl<T> Any for Repetition
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Repetition
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Repetition
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Repetition
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Repetition
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for Repetition
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Repetition
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Repetition
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Repetition
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>