pub enum SerializeError {
QuotationNotSerializable,
ClosureNotSerializable,
BincodeError(Box<Error>),
InvalidData(String),
NonFiniteFloat(f64),
}Expand description
Error during serialization/deserialization
Variants§
QuotationNotSerializable
Cannot serialize quotations (code)
ClosureNotSerializable
Cannot serialize closures
BincodeError(Box<Error>)
Bincode encoding/decoding error (preserves original error for debugging)
InvalidData(String)
Invalid data structure
NonFiniteFloat(f64)
Non-finite float (NaN or Infinity)
Trait Implementations§
Source§impl Debug for SerializeError
impl Debug for SerializeError
Source§impl Display for SerializeError
impl Display for SerializeError
Source§impl Error for SerializeError
impl Error for SerializeError
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()
Auto Trait Implementations§
impl Freeze for SerializeError
impl !RefUnwindSafe for SerializeError
impl Send for SerializeError
impl Sync for SerializeError
impl Unpin for SerializeError
impl !UnwindSafe for SerializeError
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