Struct dioxus_core::nodes::VElement[][src]

pub struct VElement<'a> {
    pub key: NodeKey,
    pub tag_name: &'a str,
    pub listeners: &'a [Listener<'a>],
    pub attributes: &'a [Attribute<'a>],
    pub children: &'a [VNode<'a>],
    pub namespace: Option<&'a str>,
}

Fields

key: NodeKey

Elements have a tag name, zero or more attributes, and zero or more

tag_name: &'a strlisteners: &'a [Listener<'a>]attributes: &'a [Attribute<'a>]children: &'a [VNode<'a>]namespace: Option<&'a str>

Implementations

impl<'a> VElement<'a>[src]

pub fn new(_tag: &'a str) -> Self[src]

Trait Implementations

impl<'a> Debug for VElement<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for VElement<'a>

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

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

impl<'a> Unpin for VElement<'a>

impl<'a> !UnwindSafe for VElement<'a>

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> Erased for T[src]

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

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

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.