Struct syn::LitInt[][src]

pub struct LitInt { /* fields omitted */ }

An integer literal: 1 or 1u16.

Holds up to 64 bits of data. Use LitVerbatim for any larger integer literal.

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

Methods

impl LitInt
[src]

Trait Implementations

impl Token for LitInt
[src]

impl Parse for LitInt
[src]

impl ToTokens for LitInt
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Clone for LitInt
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<LitInt> for Lit
[src]

Performs the conversion.

Auto Trait Implementations

impl !Send for LitInt

impl !Sync for LitInt