Enum wasmer_engine::InstantiationError
source · [−]pub enum InstantiationError {
Link(LinkError),
CpuFeature(String),
Start(RuntimeError),
}
Expand description
An error while instantiating a module.
This is not a common WebAssembly error, however
we need to differentiate from a LinkError
(an error
that happens while linking, on instantiation) and a
Trap that occurs when calling the WebAssembly module
start function.
Variants
Link(LinkError)
A linking ocurred during instantiation.
CpuFeature(String)
The module was compiled with a CPU feature that is not available on the current host.
Start(RuntimeError)
A runtime error occured while invoking the start function
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for InstantiationError
impl Send for InstantiationError
impl Sync for InstantiationError
impl Unpin for InstantiationError
impl !UnwindSafe for InstantiationError
Blanket Implementations
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
pub fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
pub fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
Mutably borrows from an owned value. Read more
pub fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
pub fn deserialize(
&self,
deserializer: &mut D
) -> Result<With<T, W>, <D as Fallible>::Error>
Deserializes using the given deserializer