pub enum Error {
Show 55 variants
InvalidMagic,
InvalidVersion,
MalformedUtf8String(Utf8Error),
Eof,
InvalidSection(SectionTy, String),
InvalidSectionType(u8),
SectionOutOfOrder(SectionTy),
InvalidNumType,
InvalidVecType,
InvalidFuncType,
InvalidFuncTypeIdx,
InvalidRefType,
InvalidValType,
InvalidExportDesc(u8),
InvalidImportDesc(u8),
ExprMissingEnd,
InvalidInstr(u8),
InvalidMultiByteInstr(u8, u8),
EndInvalidValueStack,
InvalidLocalIdx,
InvalidValidationStackValType(Option<ValType>),
InvalidValidationStackType(ValidationStackEntry),
ExpectedAnOperand,
InvalidLimitsType(u8),
InvalidMutType(u8),
MoreThanOneMemory,
InvalidLimit,
MemSizeTooBig,
InvalidGlobalIdx(usize),
GlobalIsConst,
RuntimeError(RuntimeError),
MemoryIsNotDefined(usize),
ErroneousAlignment(u32, u32),
NoDataSegments,
DataSegmentNotFound(usize),
InvalidLabelIdx(usize),
ValidationCtrlStackEmpty,
ElseWithoutMatchingIf,
IfWithoutMatchingElse,
UnknownTable,
TableIsNotDefined(usize),
ElementIsNotDefined(usize),
DifferentRefTypes(RefType, RefType),
ExpectedARefType(ValType),
WrongRefTypeForInteropValue(RefType, RefType),
FunctionIsNotDefined(usize),
ReferencingAnUnreferencedFunction(usize),
FunctionTypeIsNotDefined(usize),
StoreInstantiationError(StoreInstantiationError),
OnlyFuncRefIsAllowed,
TypeUnificationMismatch,
InvalidSelectTypeVector,
TooManyLocals(usize),
UnsupportedProposal(Proposal),
Overflow,
}
Variants§
InvalidMagic
The magic number at the very start of the given WASM file is invalid.
InvalidVersion
MalformedUtf8String(Utf8Error)
Eof
InvalidSection(SectionTy, String)
InvalidSectionType(u8)
SectionOutOfOrder(SectionTy)
InvalidNumType
InvalidVecType
InvalidFuncType
InvalidFuncTypeIdx
InvalidRefType
InvalidValType
InvalidExportDesc(u8)
InvalidImportDesc(u8)
ExprMissingEnd
InvalidInstr(u8)
InvalidMultiByteInstr(u8, u8)
EndInvalidValueStack
InvalidLocalIdx
InvalidValidationStackValType(Option<ValType>)
InvalidValidationStackType(ValidationStackEntry)
ExpectedAnOperand
InvalidLimitsType(u8)
InvalidMutType(u8)
MoreThanOneMemory
InvalidLimit
MemSizeTooBig
InvalidGlobalIdx(usize)
GlobalIsConst
RuntimeError(RuntimeError)
MemoryIsNotDefined(usize)
ErroneousAlignment(u32, u32)
NoDataSegments
DataSegmentNotFound(usize)
InvalidLabelIdx(usize)
ValidationCtrlStackEmpty
ElseWithoutMatchingIf
IfWithoutMatchingElse
UnknownTable
TableIsNotDefined(usize)
ElementIsNotDefined(usize)
DifferentRefTypes(RefType, RefType)
ExpectedARefType(ValType)
WrongRefTypeForInteropValue(RefType, RefType)
FunctionIsNotDefined(usize)
ReferencingAnUnreferencedFunction(usize)
FunctionTypeIsNotDefined(usize)
StoreInstantiationError(StoreInstantiationError)
OnlyFuncRefIsAllowed
TypeUnificationMismatch
InvalidSelectTypeVector
TooManyLocals(usize)
UnsupportedProposal(Proposal)
Overflow
Trait Implementations§
source§impl From<RuntimeError> for Error
impl From<RuntimeError> for Error
source§fn from(value: RuntimeError) -> Self
fn from(value: RuntimeError) -> Self
Converts to this type from the input type.
source§impl From<StoreInstantiationError> for Error
impl From<StoreInstantiationError> for Error
source§fn from(value: StoreInstantiationError) -> Self
fn from(value: StoreInstantiationError) -> Self
Converts to this type from the input type.
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)