Enum marine::MError[][src]

pub enum MError {
Show 22 variants ResolveError(ResolveError), WasmerInvokeError(String), WasmerCreationError(CreationError), WasmerCompileError(CompileError), WasmerRuntimeError(String), WasmerLinkError(LinkError), WasmerError(String), RecordResolveError(String), WASIPrepareError(String), ModuleInterfaceError(ITInterfaceError), ITInstructionError(InstructionError), PrepareError(Error), NonUniqueModuleName(String), NoSuchFunction(StringString), NoSuchModule(String), HostImportError(HostImportError), WITParseError(ITParserError), IncorrectWIT(String), ModuleVersionParseError(ModuleInfoError), ModuleWithoutVersion(String), IncompatibleSDKVersions { module_name: String, required: Version, provided: Version, }, IncompatibleITVersions { module_name: String, required: Version, provided: Version, },
}

Variants

ResolveError(ResolveError)

This error type is produced by Wasmer during resolving a Wasm function.

Tuple Fields of ResolveError

0: ResolveError
WasmerInvokeError(String)

Error related to calling a main Wasm module.

Tuple Fields of WasmerInvokeError

0: String
WasmerCreationError(CreationError)

Error that raises during compilation Wasm code by Wasmer.

Tuple Fields of WasmerCreationError

0: CreationError
WasmerCompileError(CompileError)

Error that raises during creation of some Wasm objects (like table and memory) by Wasmer.

Tuple Fields of WasmerCompileError

0: CompileError
WasmerRuntimeError(String)

Errors arisen during execution of a Wasm module.

Tuple Fields of WasmerRuntimeError

0: String
WasmerLinkError(LinkError)

Errors arisen during linking Wasm modules with already loaded into Marine modules.

Tuple Fields of WasmerLinkError

0: LinkError
WasmerError(String)

Errors from the temporary class of amalgamation errors from the Wasmer side.

Tuple Fields of WasmerError

0: String
RecordResolveError(String)

Errors related to failed resolving of records.

Tuple Fields of RecordResolveError

0: String
WASIPrepareError(String)

Errors arisen during creation of a WASI context.

Tuple Fields of WASIPrepareError

0: String
ModuleInterfaceError(ITInterfaceError)

Errors occurred inside marine-module-interface crate.

Tuple Fields of ModuleInterfaceError

0: ITInterfaceError
ITInstructionError(InstructionError)

Error arisen during execution of Wasm modules (especially, interface types).

Tuple Fields of ITInstructionError

0: InstructionError
PrepareError(Error)

Error that raises on the preparation step.

Tuple Fields of PrepareError

0: Error
NonUniqueModuleName(String)

Indicates that there is already a module with such name.

Tuple Fields of NonUniqueModuleName

0: String
NoSuchFunction(StringString)

Returns when there is no module with such name.

Tuple Fields of NoSuchFunction

0: String1: String
NoSuchModule(String)

Returns when there is no module with such name.

Tuple Fields of NoSuchModule

0: String
HostImportError(HostImportError)

An error occurred when host functions tries to lift IValues from WValues and lowering back.

Tuple Fields of HostImportError

0: HostImportError
WITParseError(ITParserError)

IT section parse error.

Tuple Fields of WITParseError

0: ITParserError
IncorrectWIT(String)

Incorrect IT section.

Tuple Fields of IncorrectWIT

0: String
ModuleVersionParseError(ModuleInfoError)

Error is encountered while parsing module version.

Tuple Fields of ModuleVersionParseError

0: ModuleInfoError
ModuleWithoutVersion(String)

Provided module doesn’t contain a sdk version that is necessary.

Tuple Fields of ModuleWithoutVersion

0: String
IncompatibleSDKVersions

Module sdk versions are incompatible.

Fields of IncompatibleSDKVersions

module_name: Stringrequired: Versionprovided: Version
IncompatibleITVersions

Module IT versions are incompatible.

Fields of IncompatibleITVersions

module_name: Stringrequired: Versionprovided: Version

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The lower-level source of this error, if any. Read more

🔬 This is a nightly-only experimental API. (backtrace)

Returns a stack backtrace, if available, of where this error occurred. Read more

👎 Deprecated since 1.42.0:

use the Display impl or to_string()

👎 Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.