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: Span
The span of this alternation.
asts: Vec<Ast>
The alternate regular expressions.
Implementations§
Trait Implementations§
source§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<Alternation> for Alternation
impl PartialEq<Alternation> 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