nusa 0.1.9

web-frontend features for kagura
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::Html;
use crate::v_node::v_element::{VAttributes, VEvents};

pub mod attributes;
pub mod events;

pub use attributes::Attributes;
pub use events::Events;

pub struct HtmlElement {
    pub tag_name: String,
    pub namespace_name: Option<String>,
    pub children: Vec<Html>,
    pub attributes: VAttributes,
    pub events: VEvents,
    pub index_id: Option<String>,
}