Enum json_event_parser::JsonEvent [−][src]
pub enum JsonEvent<'a> {
String(&'a str),
Number(&'a str),
Boolean(bool),
Null,
StartArray,
EndArray,
StartObject,
EndObject,
ObjectKey(&'a str),
Eof,
}Expand description
Possible events during JSON parsing
Variants
String(&'a str)Number(&'a str)Boolean(bool)ObjectKey(&'a str)Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for JsonEvent<'a>
impl<'a> UnwindSafe for JsonEvent<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more