[−][src]Struct virtual_node::VElement
Fields
tag: StringThe HTML tag, such as "div"
props: HashMap<String, String>HTML props such as id, class, style, etc
events: EventsEvents that will get added to your real DOM element via .addEventListener
children: Vec<VirtualNode>The children of this VirtualNode. So a
Methods
impl VElement[src]
pub fn new<S>(tag: S) -> Self where
S: Into<String>, [src]
S: Into<String>,
pub fn is_self_closing(&self) -> bool[src]
Whether or not this is a self closing tag such as
or
pub fn create_element_node(&self) -> CreatedNode<Element>[src]
Build a DOM element by recursively creating DOM nodes for this element and it's children, it's children's children, etc.
Trait Implementations
impl From<VElement> for VirtualNode[src]
impl PartialEq<VElement> for VElement[src]
impl Debug for VElement[src]
impl Display for VElement[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,