[][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>,
}
This is supported on crate feature full only.

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

This type is available only 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]

This is supported on crate feature clone-impls only.

impl Debug for ItemMod[src]

This is supported on crate feature extra-traits only.

impl Eq for ItemMod[src]

This is supported on crate feature extra-traits only.

impl From<ItemMod> for Item[src]

impl Hash for ItemMod[src]

This is supported on crate feature extra-traits only.

impl Parse for ItemMod[src]

This is supported on crate feature parsing only.

impl PartialEq<ItemMod> for ItemMod[src]

This is supported on crate feature extra-traits only.

impl ToTokens for ItemMod[src]

This is supported on crate feature printing only.

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.