dioxus_native_core::real_dom

Struct NodeRef

Source
pub struct NodeRef<'a, V: FromAnyValue + Send + Sync = ()> { /* private fields */ }
Expand description

An immutable reference to a node in a RealDom

Trait Implementations§

Source§

impl<'a, V: FromAnyValue + Send + Sync> Clone for NodeRef<'a, V>

Source§

fn clone(&self) -> Self

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, V: FromAnyValue + Send + Sync> NodeImmutable<V> for NodeRef<'a, V>

Source§

fn real_dom(&self) -> &RealDom<V>

Get the real dom this node was created in
Source§

fn id(&self) -> NodeId

Get the id of the current node
Source§

fn node_type(&self) -> ViewEntry<'_, NodeType<V>>

Get the type of the current node
Source§

fn get<'a, T: Component + Sync + Send>(&'a self) -> Option<ViewEntry<'a, T>>

Get a component from the current node
Source§

fn children_ids_advanced( &self, id: NodeId, enter_shadow_dom: bool, ) -> Vec<NodeId>

Get the ids of the children of the current node, if enter_shadow_dom is true and the current node is a shadow slot, the ids of the nodes under the node the shadow slot is attached to will be returned
Source§

fn child_ids(&self) -> Vec<NodeId>

Get the ids of the children of the current node
Source§

fn children(&self) -> Vec<NodeRef<'_, V>>

Get the children of the current node
Source§

fn parent_id_advanced( &self, id: NodeId, enter_shadow_dom: bool, ) -> Option<NodeId>

Get the id of the parent of the current node, if enter_shadow_dom is true and the current node is a shadow root, the node the shadow root is attached to will be returned
Source§

fn parent_id(&self) -> Option<NodeId>

Get the id of the parent of the current node
Source§

fn parent(&self) -> Option<NodeRef<'_, V>>

Get the parent of the current node
Source§

fn next(&self) -> Option<NodeRef<'_, V>>

Get the node after the current node
Source§

fn prev(&self) -> Option<NodeRef<'_, V>>

Get the node before the current node
Source§

fn height(&self) -> u16

Get the height of the current node in the tree (the number of nodes between the current node and the root)
Source§

impl<'a, V: FromAnyValue + Send + Sync> Copy for NodeRef<'a, V>

Auto Trait Implementations§

§

impl<'a, V> Freeze for NodeRef<'a, V>

§

impl<'a, V = ()> !RefUnwindSafe for NodeRef<'a, V>

§

impl<'a, V> Send for NodeRef<'a, V>

§

impl<'a, V> Sync for NodeRef<'a, V>

§

impl<'a, V> Unpin for NodeRef<'a, V>

§

impl<'a, V = ()> !UnwindSafe for NodeRef<'a, V>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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 T
where 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 T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.
Source§

impl<T> CloneAny for T
where T: Any + Clone,