[]Struct fluence_app_service::HostImportDescriptor

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

Fields

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

This closure will be invoked for corresponding import.

argument_types: Vec<IType, Global>

Type of the closure arguments.

output_type: Option<IType>

Types of output of the closure.

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

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