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>,
}
Expand description
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: Visibility
mod_token: Mod
ident: Ident
content: Option<(Brace, Vec<Item>)>
semi: Option<Semi>
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ItemMod
impl UnwindSafe for ItemMod
Blanket Implementations
Mutably borrows from an owned value. Read more