Enum parity_wasm::elements::Error
[−]
[src]
pub enum Error {
UnexpectedEof,
InconsistentLength {
expected: usize,
actual: usize,
},
Other(&'static str),
HeapOther(String),
UnknownValueType(i8),
NonUtf8String,
UnknownExternalKind(u8),
UnknownInternalKind(u8),
UnknownOpcode(u8),
}Deserialization/serialization error
Variants
UnexpectedEofUnexpected end of input
InconsistentLengthInconsistence between declared and actual length
Fields of InconsistentLength
expected: usize | Expected length of the definition |
actual: usize | Actual length of the definition |
Other(&'static str)Other static error
HeapOther(String)Other allocated error
UnknownValueType(i8)Invalid/unknown value type declaration
NonUtf8StringNon-utf8 string
UnknownExternalKind(u8)Unknown external kind code
UnknownInternalKind(u8)Unknown internal kind code
UnknownOpcode(u8)Unknown opcode encountered