Enum syn::IntSuffix[][src]

pub enum IntSuffix {
    I8,
    I16,
    I32,
    I64,
    I128,
    Isize,
    U8,
    U16,
    U32,
    U64,
    U128,
    Usize,
    None,
}

The suffix on an integer literal if any, like the u8 in 127u8.

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

Variants

Trait Implementations

impl Debug for IntSuffix
[src]

Formats the value using the given formatter. Read more

impl Eq for IntSuffix
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for IntSuffix

impl Sync for IntSuffix