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 ==
.