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), }
rustc_private
): deprecated in favor of rustc-serialize on crates.io
The output of the streaming parser.
Variants
ObjectStart
rustc_private
): deprecated in favor of rustc-serialize on crates.io
ObjectEnd
rustc_private
): deprecated in favor of rustc-serialize on crates.io
ArrayStart
rustc_private
): deprecated in favor of rustc-serialize on crates.io
ArrayEnd
rustc_private
): deprecated in favor of rustc-serialize on crates.io
BooleanValue(bool)
rustc_private
): deprecated in favor of rustc-serialize on crates.io
I64Value(i64)
rustc_private
): deprecated in favor of rustc-serialize on crates.io
U64Value(u64)
rustc_private
): deprecated in favor of rustc-serialize on crates.io
F64Value(f64)
rustc_private
): deprecated in favor of rustc-serialize on crates.io
StringValue(String)
rustc_private
): deprecated in favor of rustc-serialize on crates.io
NullValue
rustc_private
): deprecated in favor of rustc-serialize on crates.io
Error(ParserError)
rustc_private
): deprecated in favor of rustc-serialize on crates.io
Trait Implementations
Derived Implementations
impl Debug for JsonEvent
[src]
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