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 Debug for LitInt
[src]

Formats the value using the given formatter. 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.

impl Eq for LitInt
[src]

impl PartialEq for LitInt
[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 LitInt
[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl !Send for LitInt

impl !Sync for LitInt