Enum serialize::json::StackElement [] [src]

pub enum StackElement<'l> {
    Index(u32),
    Key(&'l str),
}
Unstable (rustc_private)

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

StackElements compose a Stack. For example, StackElement::Key("foo"), StackElement::Key("bar"), StackElement::Index(3) and StackElement::Key("x") are the StackElements compositing the stack that represents foo.bar[3].x

Variants

Index(u32)
Unstable (rustc_private)

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

Key(&'l str)
Unstable (rustc_private)

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

Trait Implementations

Derived Implementations

impl<'l> Debug for StackElement<'l>
[src]

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

Formats the value using the given formatter.

impl<'l> Clone for StackElement<'l>
[src]

fn clone(&self) -> StackElement<'l>

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<'l> PartialEq for StackElement<'l>
[src]

fn eq(&self, __arg_0: &StackElement<'l>) -> bool

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

fn ne(&self, __arg_0: &StackElement<'l>) -> bool

This method tests for !=.