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: Visibilitymod_token: Modident: Identcontent: Option<(Brace, Vec<Item>)>semi: Option<Semi>Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more