Enum Category
pub enum Category
Categorizes the cause of a serde_json::Error.
Variants
-
Io The error was caused by a failure to read or write bytes on an I/O stream.
-
Syntax The error was caused by input that was not syntactically valid JSON.
-
Data The error was caused by input data that was semantically incorrect.
For example, JSON containing a number is semantically incorrect when the type being deserialized into holds a String.
-
Eof The error was caused by prematurely reaching the end of the input data.
Callers that process streaming input may be interested in retrying the deserialization once more data is available.
Trait Implementations
impl Clone for Category
fn clone(&self) -> Category
impl Copy for Category
impl Debug for Category
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for Category
impl PartialEq for Category
fn eq(&self, other: &Category) -> bool
impl StructuralPartialEq for Category
Auto Trait Implementations
impl Freeze for Category
impl RefUnwindSafe for Category
impl Send for Category
impl Sync for Category
impl Unpin for Category
impl UnsafeUnpin for Category
impl UnwindSafe for Category
Blanket Implementations
impl<T> Any for Category
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for Category
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for Category
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for Category
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for Category
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for Category
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for Category
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for Category
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for Category
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>