Struct syn::PatLit[][src]

pub struct PatLit {
    pub expr: Box<Expr>,
}

A literal pattern: 0.

This holds an Expr rather than a Lit because negative numbers are represented as an Expr::Unary.

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

Fields

Trait Implementations

impl Synom for PatLit
[src]

A short name of the type being parsed. Read more

impl ToTokens for PatLit
[src]

Write self to the given Tokens. Read more

Convert self directly into a Tokens object. Read more

impl Clone for PatLit
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<PatLit> for Pat
[src]

Performs the conversion.

Auto Trait Implementations

impl !Send for PatLit

impl !Sync for PatLit