Struct regex_syntax::ast::Literal
source · [−]pub struct Literal {
pub span: Span,
pub kind: LiteralKind,
pub c: char,
}
Expand description
A single literal expression.
A literal corresponds to a single Unicode scalar value. Literals may be
represented in their literal form, e.g., a
or in their escaped form,
e.g., \x61
.
Fields
span: Span
The span of this literal.
kind: LiteralKind
The kind of this literal.
c: char
The Unicode scalar value corresponding to this literal.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Literal
impl UnwindSafe for Literal
Blanket Implementations
Mutably borrows from an owned value. Read more