Struct regex_syntax::ast::Alternation  
source · pub struct Alternation {
    pub span: Span,
    pub asts: Vec<Ast>,
}Expand description
An alternation of regular expressions.
Fields§
§span: SpanThe span of this alternation.
asts: Vec<Ast>The alternate regular expressions.
Implementations§
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for Alternation
 
impl<'arbitrary> Arbitrary<'arbitrary> for Alternation
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 Alternation
 
impl Clone for Alternation
source§fn clone(&self) -> Alternation
 
fn clone(&self) -> Alternation
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 Alternation
 
impl Debug for Alternation
source§impl PartialEq for Alternation
 
impl PartialEq for Alternation
source§fn eq(&self, other: &Alternation) -> bool
 
fn eq(&self, other: &Alternation) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for Alternation
impl StructuralEq for Alternation
impl StructuralPartialEq for Alternation
Auto Trait Implementations§
impl RefUnwindSafe for Alternation
impl Send for Alternation
impl Sync for Alternation
impl Unpin for Alternation
impl UnwindSafe for Alternation
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