Struct syn::ForeignItemStatic[][src]

pub struct ForeignItemStatic {
    pub attrs: Vec<Attribute>,
    pub vis: Visibility,
    pub static_token: Static,
    pub mutability: Option<Mut>,
    pub ident: Ident,
    pub colon_token: Colon,
    pub ty: Box<Type>,
    pub semi_token: Semi,
}

A foreign static item in an extern block: static ext: u8.

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

Fields

Trait Implementations

impl Synom for ForeignItemStatic
[src]

A short name of the type being parsed. Read more

impl ToTokens for ForeignItemStatic
[src]

Write self to the given TokenStream. Read more

Convert self directly into a TokenStream object. Read more

impl Debug for ForeignItemStatic
[src]

Formats the value using the given formatter. Read more

impl Eq for ForeignItemStatic
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<ForeignItemStatic> for ForeignItem
[src]

Performs the conversion.

Auto Trait Implementations