Struct wasmtime_wasi_nn::WasiNn[][src]

pub struct WasiNn {
    pub load: Func,
    pub init_execution_context: Func,
    pub set_input: Func,
    pub get_output: Func,
    pub compute: Func,
}

An instantiated instance of the wasi-nn exports.

Fields

load: Funcinit_execution_context: Funcset_input: Funcget_output: Funccompute: Func

Implementations

impl WasiNn[src]

pub fn new(store: &Store, cx: Rc<RefCell<WasiNnCtx>>) -> Self[src]

Creates a new WasiNn instance.

External values are allocated into the store provided and configuration of the wasi instance itself should be all contained in the cx parameter.

pub fn get_export(&self, name: &str) -> Option<&Func>[src]

Looks up a field called name in this structure, returning it if found.

This is often useful when instantiating a wasmtime instance where name resolution often happens with strings.

pub fn add_to_linker(&self, linker: &mut Linker) -> Result<()>[src]

Adds all instance items to the specified Linker.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Pointee for T[src]

type Pointer = u32

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,