Struct syn::ItemMod [−][src]
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 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]
impl Clone for ItemMod[src]fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl ToTokens for ItemMod[src]
impl ToTokens for ItemMod[src]