usestd::borrow::Cow;/// Enumeration of the various different event types emitted by the parser
pubenumEventType{
StartObject,
EndObject,
StartArray,
EndArray,}pubstructEvent<'a>{/// The type of the event
pubevent_type: EventType,
/// An in-document path for relating to the event
pubpath:Cow<'a, str>,
}