pub struct VElement<'a, T: OutputType + 'a> {
pub name: &'static str,
pub attributes: Vec<(&'static str, String)>,
pub events: &'a mut T::Events,
pub children: Vec<VNode<'a, T>>,
}
Expand description
An untyped representation of an HTML element.
Fields§
§name: &'static str
§attributes: Vec<(&'static str, String)>
§events: &'a mut T::Events
§children: Vec<VNode<'a, T>>