Enum simd_json::serde::SerdeConversionError
source · pub enum SerdeConversionError {
NanOrInfinity,
NumberOutOfBounds,
Oops,
}
Expand description
Error while converting from or to serde values
Variants§
NanOrInfinity
Serde can not reflect NAN or Infinity
NumberOutOfBounds
The number is out of the 64 bit bound
Oops
Something horrible went wrong, please open a ticket at https://simd-json.rs
Trait Implementations§
source§impl Debug for SerdeConversionError
impl Debug for SerdeConversionError
source§impl Display for SerdeConversionError
impl Display for SerdeConversionError
source§impl Error for SerdeConversionError
impl Error for SerdeConversionError
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()
Auto Trait Implementations§
impl Freeze for SerdeConversionError
impl RefUnwindSafe for SerdeConversionError
impl Send for SerdeConversionError
impl Sync for SerdeConversionError
impl Unpin for SerdeConversionError
impl UnwindSafe for SerdeConversionError
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