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),
}
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

The output of the streaming parser.

Variants

ObjectStart
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

ObjectEnd
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

ArrayStart
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

ArrayEnd
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

BooleanValue(bool)
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

I64Value(i64)
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

U64Value(u64)
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

F64Value(f64)
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

StringValue(String)
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

NullValue
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

Error(ParserError)
Unstable (rustc_private)

: deprecated in favor of rustc-serialize on crates.io

Trait Implementations

Derived Implementations

impl Debug for JsonEvent
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for JsonEvent
[src]

fn clone(&self) -> JsonEvent

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl PartialEq for JsonEvent
[src]

fn eq(&self, __arg_0: &JsonEvent) -> bool

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

fn ne(&self, __arg_0: &JsonEvent) -> bool

This method tests for !=.