Enum regex_syntax::ast::RepetitionKind  
source · pub enum RepetitionKind {
    ZeroOrOne,
    ZeroOrMore,
    OneOrMore,
    Range(RepetitionRange),
}Expand description
The kind of a repetition operator.
Variants§
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for RepetitionKind
 
impl<'arbitrary> Arbitrary<'arbitrary> for RepetitionKind
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 RepetitionKind
 
impl Clone for RepetitionKind
source§fn clone(&self) -> RepetitionKind
 
fn clone(&self) -> RepetitionKind
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 RepetitionKind
 
impl Debug for RepetitionKind
source§impl PartialEq for RepetitionKind
 
impl PartialEq for RepetitionKind
source§fn eq(&self, other: &RepetitionKind) -> bool
 
fn eq(&self, other: &RepetitionKind) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for RepetitionKind
impl StructuralEq for RepetitionKind
impl StructuralPartialEq for RepetitionKind
Auto Trait Implementations§
impl RefUnwindSafe for RepetitionKind
impl Send for RepetitionKind
impl Sync for RepetitionKind
impl Unpin for RepetitionKind
impl UnwindSafe for RepetitionKind
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