Enum nu_json::error::ErrorCode [−][src]
pub enum ErrorCode {
Show variants
Custom(String),
EofWhileParsingList,
EofWhileParsingObject,
EofWhileParsingString,
EofWhileParsingValue,
ExpectedColon,
ExpectedListCommaOrEnd,
ExpectedObjectCommaOrEnd,
ExpectedSomeIdent,
ExpectedSomeValue,
InvalidEscape,
InvalidNumber,
InvalidUnicodeCodePoint,
KeyMustBeAString,
LoneLeadingSurrogateInHexEscape,
TrailingCharacters,
UnexpectedEndOfHexEscape,
PunctuatorInQlString,
}Expand description
The errors that can arise while parsing a JSON stream.
Variants
Custom(String)Expand description
Catchall for syntax error messages
Expand description
EOF while parsing a list.
Expand description
EOF while parsing an object.
Expand description
EOF while parsing a string.
Expand description
EOF while parsing a JSON value.
Expand description
Expected this character to be a ':'.
Expand description
Expected this character to be either a ',' or a ].
Expand description
Expected this character to be either a ',' or a }.
Expand description
Expected to parse either a true, false, or a null.
Expand description
Expected this character to start a JSON value.
Expand description
Invalid hex escape code.
Expand description
Invalid number.
Expand description
Invalid Unicode code point.
Expand description
Object key is not a string.
Expand description
Lone leading surrogate in hex escape.
Expand description
JSON has non-whitespace trailing characters after the value.
Expand description
Unexpected end of hex escape.
Expand description
Found a punctuator character when expecting a quoteless string.
Trait Implementations
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> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more