[][src]Struct swipc_gen::itemmod::ItemMod

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

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

Doesn't attempt to parse the content, in order to keep the requirement on syn down.

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

Fields

attrs: Vec<Attribute>vis: Visibilitymod_token: Modident: Identcontent: Option<(Brace, TokenStream)>

Optional content of the module. The TokenStream contains whatever tokens are between the braces.

semi: Option<Semi>

Trait Implementations

impl Parse 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, 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.