pub struct FunctionStore<'a> { /* private fields */ }
Expand description
A function store contains all of the functions that are accessible to an interpreter.
Implementations§
Source§impl<'a> FunctionStore<'a>
impl<'a> FunctionStore<'a>
Sourcepub fn index_of(&self, name: &str) -> Option<FuncIndex>
pub fn index_of(&self, name: &str) -> Option<FuncIndex>
Retrieve the index of a function in the function store by its name
.
Sourcepub fn get_by_index(&self, index: FuncIndex) -> Option<&'a Function>
pub fn get_by_index(&self, index: FuncIndex) -> Option<&'a Function>
Retrieve a function by its index in the function store.
Sourcepub fn get_by_name(&self, name: &str) -> Option<&'a Function>
pub fn get_by_name(&self, name: &str) -> Option<&'a Function>
Retrieve a function by its name.
Sourcepub fn get_from_func_ref(
&self,
func_ref: FuncRef,
function: &Function,
) -> Option<&'a Function>
pub fn get_from_func_ref( &self, func_ref: FuncRef, function: &Function, ) -> Option<&'a Function>
Retrieve a function from a [FuncRef] within a [Function]. TODO this should be optimized, if possible, as currently it retrieves the function name as a string and performs string matching.
Trait Implementations§
Source§impl<'a> Clone for FunctionStore<'a>
impl<'a> Clone for FunctionStore<'a>
Source§fn clone(&self) -> FunctionStore<'a>
fn clone(&self) -> FunctionStore<'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> Default for FunctionStore<'a>
impl<'a> Default for FunctionStore<'a>
Source§fn default() -> FunctionStore<'a>
fn default() -> FunctionStore<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for FunctionStore<'a>
impl<'a> RefUnwindSafe for FunctionStore<'a>
impl<'a> Send for FunctionStore<'a>
impl<'a> Sync for FunctionStore<'a>
impl<'a> Unpin for FunctionStore<'a>
impl<'a> UnwindSafe for FunctionStore<'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