[−][src]Enum nu_json::error::ErrorCode
The errors that can arise while parsing a JSON stream.
Variants
Custom(String)
Catchall for syntax error messages
InvalidType(Type)
Incorrect type from value
InvalidValue(String)
Incorrect value
InvalidLength(usize)
Invalid length
UnknownVariant(String)
Unknown variant in an enum.
UnknownField(String)
Unknown field in struct.
MissingField(&'static str)
Struct is missing a field.
EOF while parsing a list.
EOF while parsing an object.
EOF while parsing a string.
EOF while parsing a JSON value.
Expected this character to be a ':'
.
Expected this character to be either a ','
or a ]
.
Expected this character to be either a ','
or a }
.
Expected to parse either a true
, false
, or a null
.
Expected this character to start a JSON value.
Invalid hex escape code.
Invalid number.
Invalid unicode code point.
Object key is not a string.
Lone leading surrogate in hex escape.
JSON has non-whitespace trailing characters after the value.
Unexpected end of hex excape.
Found a punctuator character when expecting a quoteless string.
Trait Implementations
impl Clone for ErrorCode
[src]
impl Debug for ErrorCode
[src]
impl PartialEq<ErrorCode> for ErrorCode
[src]
impl StructuralPartialEq for ErrorCode
[src]
Auto Trait Implementations
impl RefUnwindSafe for ErrorCode
impl Send for ErrorCode
impl Sync for ErrorCode
impl Unpin for ErrorCode
impl UnwindSafe for ErrorCode
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,