Struct rustc_ap_rustc_serialize::json::Stack [−][src]
pub struct Stack { /* fields omitted */ }Expand description
A Stack represents the current position of the parser in the logical structure of the JSON stream.
An example is foo.bar[3].x.
Implementations
impl Stack[src]
impl Stack[src]pub fn new() -> Stack[src]
pub fn get(&self, idx: usize) -> StackElement<'_>[src]
pub fn get(&self, idx: usize) -> StackElement<'_>[src]Provides access to the StackElement at a given index. lower indices are at the bottom of the stack while higher indices are at the top.
pub fn is_equal_to(&self, rhs: &[StackElement<'_>]) -> bool[src]
pub fn is_equal_to(&self, rhs: &[StackElement<'_>]) -> bool[src]Compares this stack with an array of StackElement<’_>s.
pub fn starts_with(&self, rhs: &[StackElement<'_>]) -> bool[src]
pub fn starts_with(&self, rhs: &[StackElement<'_>]) -> bool[src]Returns true if the bottom-most elements of this stack are the same as
the ones passed as parameter.
pub fn ends_with(&self, rhs: &[StackElement<'_>]) -> bool[src]
pub fn ends_with(&self, rhs: &[StackElement<'_>]) -> bool[src]Returns true if the top-most elements of this stack are the same as
the ones passed as parameter.
pub fn top(&self) -> Option<StackElement<'_>>[src]
pub fn top(&self) -> Option<StackElement<'_>>[src]Returns the top-most element (if any).