pub struct ModuleImports<'a> { /* private fields */ }
Expand description
Represents the Imports Section of a WASM Module
Implementations§
Source§impl<'a> ModuleImports<'a>
impl<'a> ModuleImports<'a>
Sourcepub fn new(imports: Vec<Import<'a>>) -> Self
pub fn new(imports: Vec<Import<'a>>) -> Self
Creates a new ModuleImports
struct given a Vec of Imports
Sourcepub fn set_name(&mut self, name: String, imports_id: ImportsID)
pub fn set_name(&mut self, name: String, imports_id: ImportsID)
Set the name of a given import using the ImportsID.
Sourcepub fn set_fn_name(&mut self, name: String, func_id: FunctionID)
pub fn set_fn_name(&mut self, name: String, func_id: FunctionID)
Set the name of an imported function, using the FunctionID rather than the ImportsID. Note that these are not necessarily equal if the module has non-function imports! (It is more efficient to do this operation using the ImportsID.)
Sourcepub fn find(&self, module: String, name: String) -> Option<ImportsID>
pub fn find(&self, module: String, name: String) -> Option<ImportsID>
Find an import by the module
and name
and return its ImportsID
if found
Sourcepub fn get_func(&self, module: String, name: String) -> Option<FunctionID>
pub fn get_func(&self, module: String, name: String) -> Option<FunctionID>
Get the function ID of an Imported Function
Sourcepub fn get_import_name(&self, imports_id: ImportsID) -> &Option<String>
pub fn get_import_name(&self, imports_id: ImportsID) -> &Option<String>
Get the name of an Import
Trait Implementations§
Source§impl<'a> Clone for ModuleImports<'a>
impl<'a> Clone for ModuleImports<'a>
Source§fn clone(&self) -> ModuleImports<'a>
fn clone(&self) -> ModuleImports<'a>
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<'a> Debug for ModuleImports<'a>
impl<'a> Debug for ModuleImports<'a>
Source§impl<'a> Default for ModuleImports<'a>
impl<'a> Default for ModuleImports<'a>
Source§fn default() -> ModuleImports<'a>
fn default() -> ModuleImports<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ModuleImports<'a>
impl<'a> RefUnwindSafe for ModuleImports<'a>
impl<'a> Send for ModuleImports<'a>
impl<'a> Sync for ModuleImports<'a>
impl<'a> Unpin for ModuleImports<'a>
impl<'a> UnwindSafe for ModuleImports<'a>
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