pub struct ModuleTables<'a> { /* private fields */ }
Expand description
Tables Section of a module
Implementations§
Source§impl<'a> ModuleTables<'a>
impl<'a> ModuleTables<'a>
Sourcepub fn iter(&self) -> Iter<'_, (TableType, Option<ConstExpr<'a>>)>
pub fn iter(&self) -> Iter<'_, (TableType, Option<ConstExpr<'a>>)>
Create an iterable over the table section
Sourcepub fn main_function(&self) -> Option<TableID>
pub fn main_function(&self) -> Option<TableID>
Finds a unique function table in a module.
Modules produced by compilers like LLVM typically have one function
table for indirect function calls. This function will look for a single
function table inside this module, and return that if found. If no
function tables are present None
will be returned
§Errors
Returns an error if there are two function tables in this module
Inspired from walrus’ implementation
Trait Implementations§
Source§impl<'a> Clone for ModuleTables<'a>
impl<'a> Clone for ModuleTables<'a>
Source§fn clone(&self) -> ModuleTables<'a>
fn clone(&self) -> ModuleTables<'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 ModuleTables<'a>
impl<'a> Debug for ModuleTables<'a>
Source§impl<'a> Default for ModuleTables<'a>
impl<'a> Default for ModuleTables<'a>
Source§fn default() -> ModuleTables<'a>
fn default() -> ModuleTables<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ModuleTables<'a>
impl<'a> RefUnwindSafe for ModuleTables<'a>
impl<'a> Send for ModuleTables<'a>
impl<'a> Sync for ModuleTables<'a>
impl<'a> Unpin for ModuleTables<'a>
impl<'a> UnwindSafe for ModuleTables<'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