Enum serialize::json::JsonEvent[][src]

pub enum JsonEvent {
    ObjectStart,
    ObjectEnd,
    ArrayStart,
    ArrayEnd,
    BooleanValue(bool),
    I64Value(i64),
    U64Value(u64),
    F64Value(f64),
    StringValue(String),
    NullValue,
    Error(ParserError),
}

The output of the streaming parser.

Variants

Trait Implementations

impl PartialEq for JsonEvent
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for JsonEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JsonEvent
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for JsonEvent

impl Sync for JsonEvent