Struct dioxus::prelude::VNode

source ·
pub struct VNode { /* private fields */ }
Expand description

A reference to a template along with any context needed to hydrate it

The dynamic parts of the template are stored separately from the static parts. This allows faster diffing by skipping static parts of the template.

Implementations§

source§

impl VNode

source

pub fn empty() -> Option<VNode>

Create a template with no nodes that will be skipped over during diffing

source

pub fn placeholder() -> VNode

Create a template with a single placeholder node

source

pub fn new( key: Option<String>, template: Template, dynamic_nodes: Box<[DynamicNode]>, dynamic_attrs: Box<[Box<[Attribute]>]> ) -> VNode

Create a new VNode

source

pub fn dynamic_root(&self, idx: usize) -> Option<&DynamicNode>

Load a dynamic root at the given index

Returns None if the root is actually a static node (Element/Text)

source

pub fn mounted_dynamic_node( &self, dynamic_node_idx: usize, dom: &VirtualDom ) -> Option<ElementId>

Get the mounted id for a dynamic node index

source

pub fn mounted_root( &self, root_idx: usize, dom: &VirtualDom ) -> Option<ElementId>

Get the mounted id for a root node index

source

pub fn mounted_dynamic_attribute( &self, dynamic_attribute_idx: usize, dom: &VirtualDom ) -> Option<ElementId>

Get the mounted id for a dynamic attribute index

Trait Implementations§

source§

impl Clone for VNode

source§

fn clone(&self) -> VNode

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 Debug for VNode

source§

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

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

impl Deref for VNode

§

type Target = VNodeInner

The resulting type after dereferencing.
source§

fn deref(&self) -> &<VNode as Deref>::Target

Dereferences the value.
source§

impl Drop for VNode

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl IntoDynNode for &VNode

source§

fn into_dyn_node(self) -> DynamicNode

Consume this item along with a scopestate and produce a DynamicNode Read more
source§

impl IntoDynNode for VNode

source§

fn into_dyn_node(self) -> DynamicNode

Consume this item along with a scopestate and produce a DynamicNode Read more
source§

impl PartialEq for VNode

source§

fn eq(&self, other: &VNode) -> 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.

Auto Trait Implementations§

§

impl !Freeze for VNode

§

impl !RefUnwindSafe for VNode

§

impl !Send for VNode

§

impl !Sync for VNode

§

impl Unpin for VNode

§

impl !UnwindSafe for VNode

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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, O> SuperFrom<T> for O
where O: From<T>,

source§

fn super_from(input: T) -> O

Convert from a type to another type.
source§

impl<T, O, M> SuperInto<O, M> for T
where O: SuperFrom<T, M>,

source§

fn super_into(self) -> O

Convert from a type to another type.
source§

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

source§

fn to<T>(self) -> T
where Self: Into<T>,

Converts to T by calling Into<T>::into.
source§

fn try_to<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Tries to convert to T by calling TryInto<T>::try_into.
source§

impl<T> ToOwned for T
where 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 T
where 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 T
where 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.
source§

impl<Cfg> TryIntoConfig for Cfg

source§

fn into_config(self) -> Option<Cfg>

Available on crate feature launch only.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DependencyElement for T
where T: 'static + PartialEq + Clone,