pub enum Error {
Show 15 variants
UnexpectedEof,
InvalidMagic,
UnsupportedVersion(u32),
InconsistentLength {
expected: usize,
actual: usize,
},
Other(&'static str),
HeapOther(String),
UnknownValueType(i8),
UnknownTableElementType(i8),
NonUtf8String,
UnknownExternalKind(u8),
UnknownInternalKind(u8),
UnknownOpcode(u8),
InvalidVarUint1(u8),
InvalidVarInt32,
InvalidVarInt64,
}
Expand description
Deserialization/serialization error
Variants§
UnexpectedEof
Unexpected end of input
InvalidMagic
Invalid magic
UnsupportedVersion(u32)
Unsupported version
InconsistentLength
Inconsistence between declared and actual length
Fields
Other(&'static str)
Other static error
HeapOther(String)
Other allocated error
UnknownValueType(i8)
Invalid/unknown value type declaration
UnknownTableElementType(i8)
Invalid/unknown table element type declaration
NonUtf8String
Non-utf8 string
UnknownExternalKind(u8)
Unknown external kind code
UnknownInternalKind(u8)
Unknown internal kind code
UnknownOpcode(u8)
Unknown opcode encountered
InvalidVarUint1(u8)
Invalid VarUint1 value
InvalidVarInt32
Invalid VarInt32 value
InvalidVarInt64
Invalid VarInt64 value
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
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