Struct wasmtime::TypedFunc[][src]

#[repr(transparent)]pub struct TypedFunc<Params, Results> { /* fields omitted */ }

A statically typed WebAssembly function.

Values of this type represent statically type-checked WebAssembly functions. The function within a TypedFunc is statically known to have Params as its parameters and Results as its results.

This structure is created via Func::typed or Func::typed_unchecked. For more documentation about this see those methods.

Implementations

impl<Params, Results> TypedFunc<Params, Results> where
    Params: WasmParams,
    Results: WasmResults
[src]

pub fn func(&self) -> &Func[src]

Returns the underlying Func that this is wrapping, losing the static type information in the process.

pub fn call(&self, params: Params) -> Result<Results, Trap>[src]

Invokes this WebAssembly function with the specified parameters.

Returns either the results of the call, or a Trap if one happened.

For more information, see the Func::typed and Func::call documentation.

Panics

This function will panic if it is called when the underlying Func is connected to an asynchronous store.

pub async fn call_async(&self, params: Params) -> Result<Results, Trap>[src]

Invokes this WebAssembly function with the specified parameters.

Returns either the results of the call, or a Trap if one happened.

For more information, see the Func::typed and Func::call_async documentation.

Panics

This function will panic if it is called when the underlying Func is connected to a synchronous store.

Trait Implementations

impl<Params, Results> Clone for TypedFunc<Params, Results>[src]

Auto Trait Implementations

impl<Params, Results> !RefUnwindSafe for TypedFunc<Params, Results>

impl<Params, Results> !Send for TypedFunc<Params, Results>

impl<Params, Results> !Sync for TypedFunc<Params, Results>

impl<Params, Results> Unpin for TypedFunc<Params, Results>

impl<Params, Results> !UnwindSafe for TypedFunc<Params, Results>

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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