[][src]Trait wasmer::HostFunction

pub trait HostFunction<Args, Rets, Kind, T> where
    Args: WasmTypeList,
    Rets: WasmTypeList,
    Kind: HostFunctionKind,
    T: Sized,
    Self: Sized
{ pub fn function_body_ptr(self) -> *const VMFunctionBody; }

The HostFunction trait represents the set of functions that can be used as host function. To uphold this statement, it is necessary for a function to be transformed into a pointer to VMFunctionBody.

Required methods

pub fn function_body_ptr(self) -> *const VMFunctionBody[src]

Get the pointer to the function body.

Loading content...

Implementors

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25, A26, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25, A26), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    A22: FromToNativeWasmType,
    A23: FromToNativeWasmType,
    A24: FromToNativeWasmType,
    A25: FromToNativeWasmType,
    A26: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25, A26) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25, A26, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25, A26), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    A22: FromToNativeWasmType,
    A23: FromToNativeWasmType,
    A24: FromToNativeWasmType,
    A25: FromToNativeWasmType,
    A26: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25, A26) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    A22: FromToNativeWasmType,
    A23: FromToNativeWasmType,
    A24: FromToNativeWasmType,
    A25: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    A22: FromToNativeWasmType,
    A23: FromToNativeWasmType,
    A24: FromToNativeWasmType,
    A25: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, A25) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    A22: FromToNativeWasmType,
    A23: FromToNativeWasmType,
    A24: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    A22: FromToNativeWasmType,
    A23: FromToNativeWasmType,
    A24: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, A24) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    A22: FromToNativeWasmType,
    A23: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    A22: FromToNativeWasmType,
    A23: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, A23) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    A22: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    A22: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, A22) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    A21: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, A21) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    A20: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, A20) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    A19: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, A19) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    A18: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, A18) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    A17: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, A17) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    A16: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, A16) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    A15: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, A15) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    A14: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    A13: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    A12: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    A11: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    A10: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8, A9) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, A9, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8, A9), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    A9: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8, A9) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7, A8) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, A8, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7, A8), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    A8: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7, A8) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, A7, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6, A7) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, A7, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6, A7), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    A7: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6, A7) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, A6, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5, A6), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5, A6) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, A6, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5, A6), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    A6: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5, A6) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, A5, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4, A5), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4, A5) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, A5, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4, A5), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    A5: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4, A5) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, A4, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3, A4), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3, A4) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, A4, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3, A4), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    A4: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3, A4) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, A3, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2, A3), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2, A3) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, A3, Rets, RetsAsResult, Func> HostFunction<(A1, A2, A3), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    A3: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2, A3) -> RetsAsResult + 'static + Send
[src]

impl<A1, A2, Rets, RetsAsResult, Env, Func> HostFunction<(A1, A2), Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1, A2) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, A2, Rets, RetsAsResult, Func> HostFunction<(A1, A2), Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    A2: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1, A2) -> RetsAsResult + 'static + Send
[src]

impl<A1, Rets, RetsAsResult, Env, Func> HostFunction<A1, Rets, WithEnv, Env> for Func where
    A1: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env, A1) -> RetsAsResult + Send + 'static, 
[src]

impl<A1, Rets, RetsAsResult, Func> HostFunction<A1, Rets, WithoutEnv, ()> for Func where
    A1: FromToNativeWasmType,
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn(A1) -> RetsAsResult + 'static + Send
[src]

impl<Rets, RetsAsResult, Env, Func> HostFunction<(), Rets, WithEnv, Env> for Func where
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Env: Sized,
    Func: Fn(&Env) -> RetsAsResult + Send + 'static, 
[src]

impl<Rets, RetsAsResult, Func> HostFunction<(), Rets, WithoutEnv, ()> for Func where
    Rets: WasmTypeList,
    RetsAsResult: IntoResult<Rets>,
    Func: Fn() -> RetsAsResult + 'static + Send
[src]

Loading content...