pub enum ErrorCode {
Show 15 variants Unsupported(char), EOFWhileParsing, StackUnderflow, NegativeLength, StringNotUTF8, InvalidStackTop(&'static strString), ValueNotHashable, Recursive, UnresolvedGlobal, UnsupportedGlobal(Vec<u8>, Vec<u8>), MissingMemo(u32), InvalidLiteral(Vec<u8>), TrailingBytes, InvalidValue(String), Structure(String),
}

Variants

Unsupported(char)

Unsupported opcode

EOFWhileParsing

EOF while parsing op argument

StackUnderflow

Stack underflowed

NegativeLength

Length prefix found negative

StringNotUTF8

String decoding as UTF-8 failed

InvalidStackTop(&'static strString)

Wrong stack top type for opcode

ValueNotHashable

Value not hashable, but used as dict key or set item

Recursive

Recursive structure found, which we don’t support

UnresolvedGlobal

A “module global” reference wasn’t resolved by REDUCE

UnsupportedGlobal(Vec<u8>, Vec<u8>)

A “module global” isn’t supported

MissingMemo(u32)

A value was missing from the memo

InvalidLiteral(Vec<u8>)

Invalid literal found

TrailingBytes

Found trailing bytes after STOP opcode

InvalidValue(String)

Invalid value in pickle stream

Structure(String)

Structure deserialization error (e.g., unknown variant)

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

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.