Struct syn::ExprLit [] [src]

pub struct ExprLit {
    pub attrs: Vec<Attribute>,
    pub lit: Lit,
}

A literal in place of an expression: 1, "foo".

This type is available if Syn is built with the "derive" or "full" feature.

Fields

Trait Implementations

impl Synom for ExprLit
[src]

A short name of the type being parsed. Read more

impl ToTokens for ExprLit
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Clone for ExprLit
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<ExprLit> for Expr
[src]

Performs the conversion.

Auto Trait Implementations

impl !Send for ExprLit

impl !Sync for ExprLit