pub enum SimdJsonError {
Show 32 variants
Capacity,
MemAlloc,
TapeError,
DepthError,
StringError,
TAtomError,
FAtomError,
NAtomError,
NumberError,
Utf8Error,
Uninitialized,
Empty,
UnescapedChars,
UnclosedString,
UnsupportedArchitecture,
IncorrectType,
NumberOutOfRange,
IndexOutOfBounds,
NoSuchField,
IoError,
InvalidJsonPointer,
InvalidUriFragment,
UnexpectedError,
ParserInUse,
OutOfOrderIteration,
InsufficientPadding,
IncompleteArrayOrObject,
ScalarDocumentAsValue,
OutOfBounds,
TailingContent,
NumErrorCodes,
StdIoError(Error),
}
Variants§
Capacity
MemAlloc
TapeError
DepthError
StringError
TAtomError
FAtomError
NAtomError
NumberError
Utf8Error
Uninitialized
Empty
UnescapedChars
UnclosedString
UnsupportedArchitecture
IncorrectType
NumberOutOfRange
IndexOutOfBounds
NoSuchField
IoError
InvalidJsonPointer
InvalidUriFragment
UnexpectedError
ParserInUse
OutOfOrderIteration
InsufficientPadding
IncompleteArrayOrObject
ScalarDocumentAsValue
OutOfBounds
TailingContent
NumErrorCodes
StdIoError(Error)
Trait Implementations§
Source§impl Debug for SimdJsonError
impl Debug for SimdJsonError
Source§impl Display for SimdJsonError
impl Display for SimdJsonError
Source§impl Error for SimdJsonError
impl Error for SimdJsonError
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 SimdJsonError
impl From<Error> for SimdJsonError
Auto Trait Implementations§
impl Freeze for SimdJsonError
impl !RefUnwindSafe for SimdJsonError
impl Send for SimdJsonError
impl Sync for SimdJsonError
impl Unpin for SimdJsonError
impl !UnwindSafe for SimdJsonError
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