Enum jsonc_parser::ast::Node[][src]

pub enum Node<'a, 'b> {
    StringLit(&'b StringLit<'a>),
    NumberLit(&'b NumberLit<'a>),
    BooleanLit(&'b BooleanLit),
    Object(&'b Object<'a>),
    ObjectProp(&'b ObjectProp<'a>),
    Array(&'b Array<'a>),
    NullKeyword(&'b NullKeyword),
    WordLit(&'b WordLit<'a>),
}

Node that can appear in the AST.

Variants

StringLit(&'b StringLit<'a>)
NumberLit(&'b NumberLit<'a>)
BooleanLit(&'b BooleanLit)
Object(&'b Object<'a>)
ObjectProp(&'b ObjectProp<'a>)
Array(&'b Array<'a>)
NullKeyword(&'b NullKeyword)
WordLit(&'b WordLit<'a>)

Implementations

impl<'a, 'b> Node<'a, 'b>[src]

pub fn kind(&self) -> NodeKind[src]

Gets the node kind.

Trait Implementations

impl<'a, 'b> Clone for Node<'a, 'b>[src]

impl<'a, 'b> Debug for Node<'a, 'b>[src]

impl<'a, 'b> From<&'b Array<'a>> for Node<'a, 'b>[src]

impl<'a, 'b> From<&'b BooleanLit> for Node<'a, 'b>[src]

impl<'a, 'b> From<&'b NullKeyword> for Node<'a, 'b>[src]

impl<'a, 'b> From<&'b NumberLit<'a>> for Node<'a, 'b>[src]

impl<'a, 'b> From<&'b Object<'a>> for Node<'a, 'b>[src]

impl<'a, 'b> From<&'b ObjectProp<'a>> for Node<'a, 'b>[src]

impl<'a, 'b> From<&'b ObjectPropName<'a>> for Node<'a, 'b>[src]

impl<'a, 'b> From<&'b StringLit<'a>> for Node<'a, 'b>[src]

impl<'a, 'b> From<&'b Value<'a>> for Node<'a, 'b>[src]

impl<'a, 'b> From<&'b WordLit<'a>> for Node<'a, 'b>[src]

impl<'a, 'b> PartialEq<Node<'a, 'b>> for Node<'a, 'b>[src]

impl<'a, 'b> Ranged for Node<'a, 'b>[src]

impl<'a, 'b> StructuralPartialEq for Node<'a, 'b>[src]

Auto Trait Implementations

impl<'a, 'b> RefUnwindSafe for Node<'a, 'b>

impl<'a, 'b> Send for Node<'a, 'b>

impl<'a, 'b> Sync for Node<'a, 'b>

impl<'a, 'b> Unpin for Node<'a, 'b> where
    'a: 'b, 

impl<'a, 'b> UnwindSafe for Node<'a, 'b>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.