Enum serialize::json::StackElementUnstable
[-] [+]
[src]
pub enum StackElement<'l> { Index(u32), Key(&'l str), }
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 | |
Key |