pub struct Module {
pub name: String,
pub stage: Stage,
pub body: Block,
pub symbols: Vec<Symbol>,
pub imports: Vec<ModuleImport>,
pub submodules: Vec<String>,
pub locales: Vec<LocaleFile>,
}Fields§
§name: String§stage: Stage§body: Block§symbols: Vec<Symbol>§imports: Vec<ModuleImport>§submodules: Vec<String>§locales: Vec<LocaleFile>Locale .cfg data declared via locale! in this module.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Module
Auto Trait Implementations§
impl Freeze for Module
impl RefUnwindSafe for Module
impl Send for Module
impl Sync for Module
impl Unpin for Module
impl UnsafeUnpin for Module
impl UnwindSafe for Module
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more