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)
Catchall for syntax error messages
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 escape.
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 = T
The 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