Struct marine::generic::MModuleConfig
source · pub struct MModuleConfig<WB>where
WB: WasmBackend,{
pub raw_imports: HashMap<HostAPIVersion, HashMap<String, Arc<dyn Fn(<WB as WasmBackend>::ContextMut<'_>) -> <WB as WasmBackend>::HostFunction>>>,
pub host_imports: HashMap<HostAPIVersion, HashMap<String, HostImportDescriptor<WB>>>,
pub wasi_parameters: WasiParameters,
}Fields§
§raw_imports: HashMap<HostAPIVersion, HashMap<String, Arc<dyn Fn(<WB as WasmBackend>::ContextMut<'_>) -> <WB as WasmBackend>::HostFunction>>>Import object that will be used in module instantiation process.
host_imports: HashMap<HostAPIVersion, HashMap<String, HostImportDescriptor<WB>>>Imports from the host side that will be used in module instantiation process.
wasi_parameters: WasiParametersWASI parameters: env variables, mapped dirs, preopened files and args
Implementations§
source§impl<WB> MModuleConfig<WB>where
WB: WasmBackend,
impl<WB> MModuleConfig<WB>where
WB: WasmBackend,
pub fn with_wasi_envs(self, envs: HashMap<String, String>) -> MModuleConfig<WB>
pub fn with_wasi_preopened_files( self, preopened_files: HashSet<PathBuf> ) -> MModuleConfig<WB>
pub fn with_wasi_mapped_dirs( self, mapped_dirs: HashMap<String, PathBuf> ) -> MModuleConfig<WB>
Trait Implementations§
source§impl<WB> Default for MModuleConfig<WB>where
WB: WasmBackend,
impl<WB> Default for MModuleConfig<WB>where
WB: WasmBackend,
source§fn default() -> MModuleConfig<WB>
fn default() -> MModuleConfig<WB>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<WB> !RefUnwindSafe for MModuleConfig<WB>
impl<WB> !Send for MModuleConfig<WB>
impl<WB> !Sync for MModuleConfig<WB>
impl<WB> Unpin for MModuleConfig<WB>
impl<WB> !UnwindSafe for MModuleConfig<WB>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§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.