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: SpanThe span of this literal.
kind: LiteralKindThe kind of this literal.
c: charThe Unicode scalar value corresponding to this literal.
Implementations§
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for Literal
 
impl<'arbitrary> Arbitrary<'arbitrary> for Literal
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
 
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of 
Self from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
 
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of 
Self from the entirety of the given
unstructured data. Read moresource§impl PartialEq for Literal
 
impl PartialEq for Literal
impl Eq for Literal
impl StructuralEq for Literal
impl StructuralPartialEq for Literal
Auto Trait Implementations§
impl RefUnwindSafe for Literal
impl Send for Literal
impl Sync for Literal
impl Unpin for Literal
impl UnwindSafe for Literal
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