pub enum JSONParseErrorReason {
ExpectedColon,
ExpectedEndOfValue,
ExpectedBracket,
ExpectedTrueFalseNull,
ExpectedKey,
ExpectedValue,
ExpectedEndOfMultilineComment,
ExpectedQuote,
}
Variants§
ExpectedColon
ExpectedEndOfValue
ExpectedBracket
Doubles as both closing and ending
ExpectedTrueFalseNull
ExpectedKey
ExpectedValue
ExpectedEndOfMultilineComment
ExpectedQuote
Both for string values and keys
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JSONParseErrorReason
impl RefUnwindSafe for JSONParseErrorReason
impl Send for JSONParseErrorReason
impl Sync for JSONParseErrorReason
impl Unpin for JSONParseErrorReason
impl UnwindSafe for JSONParseErrorReason
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