Enum jsonc_parser::ast::Node

source ·
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>),
}
Expand description

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§

source§

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

source

pub fn kind(&self) -> NodeKind

Gets the node kind.

source

pub fn as_string_lit(&self) -> Option<&'b StringLit<'a>>

source

pub fn as_number_lit(&self) -> Option<&'b NumberLit<'a>>

source

pub fn as_boolean_lit(&self) -> Option<&'b BooleanLit>

source

pub fn as_object(&self) -> Option<&'b Object<'a>>

source

pub fn as_object_prop(&self) -> Option<&'b ObjectProp<'a>>

source

pub fn as_array(&self) -> Option<&'b Array<'a>>

source

pub fn as_null_keyword(&self) -> Option<&'b NullKeyword>

source

pub fn as_word_lit(&self) -> Option<&'b WordLit<'a>>

Trait Implementations§

source§

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

source§

fn clone(&self) -> Node<'a, 'b>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

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

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

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

source§

fn from(node: &'b Array<'a>) -> Node<'a, 'b>

Converts to this type from the input type.
source§

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

source§

fn from(node: &'b BooleanLit) -> Node<'a, 'b>

Converts to this type from the input type.
source§

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

source§

fn from(node: &'b NullKeyword) -> Node<'a, 'b>

Converts to this type from the input type.
source§

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

source§

fn from(node: &'b NumberLit<'a>) -> Node<'a, 'b>

Converts to this type from the input type.
source§

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

source§

fn from(node: &'b Object<'a>) -> Node<'a, 'b>

Converts to this type from the input type.
source§

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

source§

fn from(node: &'b ObjectProp<'a>) -> Node<'a, 'b>

Converts to this type from the input type.
source§

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

source§

fn from(object_prop_name: &'b ObjectPropName<'a>) -> Node<'a, 'b>

Converts to this type from the input type.
source§

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

source§

fn from(node: &'b StringLit<'a>) -> Node<'a, 'b>

Converts to this type from the input type.
source§

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

source§

fn from(value: &'b Value<'a>) -> Node<'a, 'b>

Converts to this type from the input type.
source§

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

source§

fn from(node: &'b WordLit<'a>) -> Node<'a, 'b>

Converts to this type from the input type.
source§

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

source§

fn eq(&self, other: &Node<'a, 'b>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

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

source§

fn range(&self) -> &Range

Gets the range.
source§

fn start(&self) -> usize

Gets the byte index of the first character in the text.
source§

fn end(&self) -> usize

Gets the byte index after the last character in the text.
source§

fn text<'a>(&self, text: &'a str) -> &'a str

Gets the text from the provided string.
source§

fn width(&self) -> usize

Gets the end byte index minus the start byte index of the range.
source§

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

source§

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

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>

§

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

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.