Enum rustc_serialize::json::StackElement  
            
                [−]
            
        [src]
pub enum StackElement<'l> {
    Index(u32),
    Key(&'l str),
}StackElements compose a Stack. For example, Key("foo"), Key("bar"), Index(3) and Key("x") are the StackElements compositing the stack that represents foo.bar[3].x
Variants
Index | |
Key |