[]Struct aquamarine_vm::HostImportDescriptor

pub struct HostImportDescriptor {
    pub host_exported_func: Box<dyn Fn(&mut Ctx, Vec<InterfaceValue>) + 'static>,
    pub argument_types: Vec<InterfaceType>,
    pub output_type: Option<InterfaceType>,
    pub error_handler: Option<Box<dyn Fn(&HostImportError) + 'static>>,
}

Fields

host_exported_func: Box<dyn Fn(&mut Ctx, Vec<InterfaceValue>) + 'static>

This closure will be invoked for corresponding import.

argument_types: Vec<InterfaceType>

Type of the closure arguments.

output_type: Option<InterfaceType>

Types of output of the closure.

error_handler: Option<Box<dyn Fn(&HostImportError) + 'static>>

If Some, this closure is called with error when errors is encountered while lifting. If None, panic will occur.

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

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.