pub enum ParsingStatus {
Initial,
ArrayBegin,
ArrayValue,
ArrayComma,
ObjectBegin,
ObjectKey,
ObjectColon,
ObjectValue,
ObjectComma,
ImportBegin,
ImportValue,
ImportEnd,
}
Variants§
Initial
ArrayBegin
ArrayValue
ArrayComma
ObjectBegin
ObjectKey
ObjectColon
ObjectValue
ObjectComma
ImportBegin
ImportValue
ImportEnd
Trait Implementations§
Source§impl Debug for ParsingStatus
impl Debug for ParsingStatus
Source§impl Default for ParsingStatus
impl Default for ParsingStatus
Source§fn default() -> ParsingStatus
fn default() -> ParsingStatus
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParsingStatus
impl RefUnwindSafe for ParsingStatus
impl Send for ParsingStatus
impl Sync for ParsingStatus
impl Unpin for ParsingStatus
impl UnwindSafe for ParsingStatus
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