Struct regex_syntax::ast::Literal [−][src]
pub struct Literal {
pub span: Span,
pub kind: LiteralKind,
pub c: char,
}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: SpanThe span of this literal.
kind: LiteralKindThe kind of this literal.
c: charThe Unicode scalar value corresponding to this literal.
Implementations
Trait Implementations
impl StructuralEq for Literal[src]
impl StructuralEq for Literal[src]impl StructuralPartialEq for Literal[src]
impl StructuralPartialEq for Literal[src]Auto Trait Implementations
impl RefUnwindSafe for Literal
impl RefUnwindSafe for Literalimpl UnwindSafe for Literal
impl UnwindSafe for Literal