Struct FunctionStore

Source
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>

Source

pub fn add(&mut self, name: String, function: &'a Function)

Add a function by name.

Source

pub fn index_of(&self, name: &str) -> Option<FuncIndex>

Retrieve the index of a function in the function store by its name.

Source

pub fn get_by_index(&self, index: FuncIndex) -> Option<&'a Function>

Retrieve a function by its index in the function store.

Source

pub fn get_by_name(&self, name: &str) -> Option<&'a Function>

Retrieve a function by its name.

Source

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>

Source§

fn clone(&self) -> FunctionStore<'a>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Default for FunctionStore<'a>

Source§

fn default() -> FunctionStore<'a>

Returns the “default value” for a type. Read more
Source§

impl<'a> From<&'a Function> for FunctionStore<'a>

This is a helpful conversion for instantiating a store from a single [Function].

Source§

fn from(function: &'a Function) -> Self

Converts to this type from the input type.

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.