pub struct ModuleExports { /* private fields */ }
Expand description
Represents the Exports Section of a WASM Module
Implementations§
Source§impl ModuleExports
impl ModuleExports
Sourcepub fn new(exports: Vec<Export>) -> Self
pub fn new(exports: Vec<Export>) -> Self
Creates a new ModuleExports
struct from a Vector of Exports
pub fn iter(&self) -> Iter<'_, Export>
Sourcepub fn add_export_func(&mut self, name: String, exp_id: u32)
pub fn add_export_func(&mut self, name: String, exp_id: u32)
Add an exported function
Sourcepub fn get_by_name(&self, name: String) -> Option<Export>
pub fn get_by_name(&self, name: String) -> Option<Export>
Get export by name and return if present
Sourcepub fn get_export_id_by_name(&self, name: String) -> Option<ExportsID>
pub fn get_export_id_by_name(&self, name: String) -> Option<ExportsID>
Get the export ID by name
Sourcepub fn get_func_by_id(&self, id: FunctionID) -> Option<ExportsID>
pub fn get_func_by_id(&self, id: FunctionID) -> Option<ExportsID>
Get the Export ID from its function ID
Sourcepub fn get_func_by_name(&self, name: String) -> Option<FunctionID>
pub fn get_func_by_name(&self, name: String) -> Option<FunctionID>
Get the function ID of an exported function
Trait Implementations§
Source§impl Clone for ModuleExports
impl Clone for ModuleExports
Source§fn clone(&self) -> ModuleExports
fn clone(&self) -> ModuleExports
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 ModuleExports
impl Debug for ModuleExports
Source§impl Default for ModuleExports
impl Default for ModuleExports
Source§fn default() -> ModuleExports
fn default() -> ModuleExports
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ModuleExports
impl RefUnwindSafe for ModuleExports
impl Send for ModuleExports
impl Sync for ModuleExports
impl Unpin for ModuleExports
impl UnwindSafe for ModuleExports
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