Struct marine::generic::HostImportDescriptor
source · pub struct HostImportDescriptor<WB>where
WB: WasmBackend,{
pub host_exported_func: Box<dyn for<'c> Fn(&mut <WB as WasmBackend>::Caller<'c>, Vec<IValue, Global>) -> Option<IValue> + Sync + Send + 'static, Global>,
pub argument_types: Vec<IType, Global>,
pub output_type: Option<IType>,
pub error_handler: Option<Box<dyn Fn(&HostImportError) -> Option<IValue> + Sync + Send + 'static, Global>>,
}Fields§
§host_exported_func: Box<dyn for<'c> Fn(&mut <WB as WasmBackend>::Caller<'c>, Vec<IValue, Global>) -> Option<IValue> + Sync + Send + '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) -> Option<IValue> + Sync + Send + 'static, Global>>If Some, this closure is called with error when errors is encountered while lifting. If None, panic will occur.
Auto Trait Implementations§
impl<WB> !RefUnwindSafe for HostImportDescriptor<WB>
impl<WB> Send for HostImportDescriptor<WB>
impl<WB> Sync for HostImportDescriptor<WB>
impl<WB> Unpin for HostImportDescriptor<WB>
impl<WB> !UnwindSafe for HostImportDescriptor<WB>
Blanket Implementations§
§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where T: AsFilelike,
Query the “status” flags for the
self file descriptor.