pub struct ModuleGlobals { /* private fields */ }
Expand description
The globals section of a module
Implementations§
Source§impl ModuleGlobals
impl ModuleGlobals
Sourcepub fn new(imports: &ModuleImports<'_>, local_globals: Vec<Global>) -> Self
pub fn new(imports: &ModuleImports<'_>, local_globals: Vec<Global>) -> Self
Create a new globals section
Sourcepub fn get_kind(&self, global_id: GlobalID) -> &GlobalKind
pub fn get_kind(&self, global_id: GlobalID) -> &GlobalKind
Get kind of global
Trait Implementations§
Source§impl Clone for ModuleGlobals
impl Clone for ModuleGlobals
Source§fn clone(&self) -> ModuleGlobals
fn clone(&self) -> ModuleGlobals
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ModuleGlobals
impl Debug for ModuleGlobals
Source§impl Default for ModuleGlobals
impl Default for ModuleGlobals
Source§fn default() -> ModuleGlobals
fn default() -> ModuleGlobals
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ModuleGlobals
impl RefUnwindSafe for ModuleGlobals
impl Send for ModuleGlobals
impl Sync for ModuleGlobals
impl Unpin for ModuleGlobals
impl UnwindSafe for ModuleGlobals
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