Enum regex_syntax::ast::Ast [−][src]
pub enum Ast { Empty(Span), Flags(SetFlags), Literal(Literal), Dot(Span), Assertion(Assertion), Class(Class), Repetition(Repetition), Group(Group), Alternation(Alternation), Concat(Concat), }
Expand description
An abstract syntax tree for a single regular expression.
An Ast
’s fmt::Display
implementation uses constant stack space and heap
space proportional to the size of the Ast
.
This type defines its own destructor that uses constant stack space and
heap space proportional to the size of the Ast
.
Variants
An empty regex that matches everything.
Tuple Fields of Empty
0: Span
A set of flags, e.g., (?is)
.
Tuple Fields of Flags
0: SetFlags
A single character literal, which includes escape sequences.
Tuple Fields of Literal
0: Literal
The “any character” class.
Tuple Fields of Dot
0: Span
A single zero-width assertion.
Tuple Fields of Assertion
0: Assertion
A single character class. This includes all forms of character classes
except for .
. e.g., \d
, \pN
, [a-z]
and [[:alpha:]]
.
Tuple Fields of Class
0: Class
A repetition operator applied to an arbitrary regular expression.
Tuple Fields of Repetition
0: Repetition
A grouped regular expression.
Tuple Fields of Group
0: Group
An alternation of regular expressions.
Tuple Fields of Alternation
0: Alternation
A concatenation of regular expressions.
Tuple Fields of Concat
0: Concat
Implementations
Trait Implementations
Print a display representation of this Ast.
This does not preserve any of the original whitespace formatting that may have originally been present in the concrete syntax from which this Ast was generated.
This implementation uses constant stack space and heap space proportional
to the size of the Ast
.
A custom Drop
impl is used for Ast
such that it uses constant stack
space but heap space proportional to the depth of the Ast
.
Auto Trait Implementations
impl RefUnwindSafe for Ast
impl UnwindSafe for Ast
Blanket Implementations
Mutably borrows from an owned value. Read more