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 TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Debug for PatLit
[src]

Formats the value using the given formatter. Read more

impl Eq for PatLit
[src]

impl PartialEq for PatLit
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for PatLit
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. 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