pub struct LiveNodeReader<'a> { /* private fields */ }

Implementations§

source§

impl<'a> LiveNodeReader<'a>

source

pub fn new(index: usize, nodes: &'a [LiveNode]) -> Self

source

pub fn index_option( &self, index: Option<usize>, depth_change: isize ) -> Option<Self>

source

pub fn node(&self) -> &LiveNode

source

pub fn parent(&self) -> Option<Self>

source

pub fn append_child_index(&self) -> usize

source

pub fn first_child(&self) -> Option<Self>

source

pub fn last_child(&self) -> Option<Self>

source

pub fn next_child(&self) -> Option<Self>

source

pub fn node_slice(&self) -> &[LiveNode]

source

pub fn children_slice(&self) -> &[LiveNode]

source

pub fn child_by_number(&self, child_number: usize) -> Option<Self>

source

pub fn child_by_name(&self, name: LiveProp) -> Option<Self>

source

pub fn scope_up_by_name(&self, name: LiveProp) -> Option<Self>

source

pub fn count_children(&self) -> usize

source

pub fn clone_child(&self, out_vec: &mut Vec<LiveNode>)

source

pub fn to_string(&self, max_depth: usize) -> String

source

pub fn skip(&mut self)

source

pub fn walk(&mut self)

source

pub fn is_eot(&self) -> bool

source

pub fn index(&self) -> usize

source

pub fn depth(&self) -> usize

source

pub fn nodes(&self) -> &[LiveNode]

Methods from Deref<Target = LiveNode>§

source

pub fn is_token_id_inside_dsl(&self, other_token: LiveTokenId) -> bool

source

pub fn prop(&self) -> LiveProp

Methods from Deref<Target = LiveValue>§

source

pub fn update_from_live_token(&mut self, token: &LiveToken) -> bool

source

pub fn is_open(&self) -> bool

source

pub fn is_close(&self) -> bool

source

pub fn is_enum(&self) -> bool

source

pub fn is_array(&self) -> bool

source

pub fn is_expr(&self) -> bool

source

pub fn is_class(&self) -> bool

source

pub fn is_clone(&self) -> bool

source

pub fn is_object(&self) -> bool

source

pub fn is_dsl(&self) -> bool

source

pub fn set_dsl_expand_index_if_none(&mut self, index: usize)

source

pub fn set_expr_expand_index_if_none(&mut self, index: usize)

source

pub fn get_expr_expand_index(&self) -> Option<u32>

source

pub fn is_id(&self) -> bool

source

pub fn is_color(&self) -> bool

source

pub fn is_value_type(&self) -> bool

source

pub fn is_single_node(&self) -> bool

source

pub fn is_structy_type(&self) -> bool

source

pub fn is_number_type(&self) -> bool

source

pub fn as_float(&self) -> Option<f64>

source

pub fn as_int(&self) -> Option<i64>

source

pub fn as_vec2(&self) -> Option<Vec2>

source

pub fn as_vec3(&self) -> Option<Vec3>

source

pub fn as_vec4(&self) -> Option<Vec4>

source

pub fn as_bool(&self) -> Option<bool>

source

pub fn enum_eq(&self, id_eq: &[LiveId]) -> LiveValue

source

pub fn enum_neq(&self, id_eq: &[LiveId]) -> LiveValue

source

pub fn set_clone_name(&mut self, name: LiveId)

source

pub fn get_clone_name(&self) -> LiveId

source

pub fn variant_id(&self) -> usize

Trait Implementations§

source§

impl<'a> Deref for LiveNodeReader<'a>

§

type Target = LiveNode

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.

Auto Trait Implementations§

§

impl<'a> RefUnwindSafe for LiveNodeReader<'a>

§

impl<'a> !Send for LiveNodeReader<'a>

§

impl<'a> !Sync for LiveNodeReader<'a>

§

impl<'a> Unpin for LiveNodeReader<'a>

§

impl<'a> UnwindSafe for LiveNodeReader<'a>

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, 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.