pub enum PickleError {
Io(Error),
InvalidOpCode(u8),
InvalidProtocol(u8),
UnexpectedOpCode(OpCode),
UnsupportedType(String),
InvalidData(String),
StackUnderflow,
MemoNotFound(u32),
InvalidShapeOrType,
}Expand description
Error type for pickle operations
Variants§
Io(Error)
InvalidOpCode(u8)
InvalidProtocol(u8)
UnexpectedOpCode(OpCode)
UnsupportedType(String)
InvalidData(String)
StackUnderflow
MemoNotFound(u32)
InvalidShapeOrType
Trait Implementations§
Source§impl Debug for PickleError
impl Debug for PickleError
Source§impl Display for PickleError
impl Display for PickleError
Source§impl Error for PickleError
impl Error for PickleError
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
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for PickleError
impl From<Error> for PickleError
Source§impl From<PickleError> for PytorchError
impl From<PickleError> for PytorchError
Source§fn from(e: PickleError) -> Self
fn from(e: PickleError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PickleError
impl !RefUnwindSafe for PickleError
impl Send for PickleError
impl Sync for PickleError
impl Unpin for PickleError
impl !UnwindSafe for PickleError
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