[][src]Struct syn::ItemMod

pub struct ItemMod {
    pub attrs: Vec<Attribute>,
    pub vis: Visibility,
    pub mod_token: Mod,
    pub ident: Ident,
    pub content: Option<(Brace, Vec<Item>)>,
    pub semi: Option<Semi>,
}

A module or module declaration: mod m or mod m { ... }.

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

Fields

attrs: Vec<Attribute>vis: Visibilitymod_token: Modident: Identcontent: Option<(Brace, Vec<Item>)>semi: Option<Semi>

Trait Implementations

impl Clone for ItemMod[src]

impl Debug for ItemMod[src]

impl Eq for ItemMod[src]

impl From<ItemMod> for Item[src]

impl Hash for ItemMod[src]

impl Parse for ItemMod[src]

impl PartialEq<ItemMod> for ItemMod[src]

impl StructuralEq for ItemMod[src]

impl StructuralPartialEq for ItemMod[src]

impl ToTokens for ItemMod[src]

Auto Trait Implementations

impl !RefUnwindSafe for ItemMod

impl !Send for ItemMod

impl !Sync for ItemMod

impl Unpin for ItemMod

impl UnwindSafe for ItemMod

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Spanned for T where
    T: Spanned + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.