pub struct table<T>where
T: OutputType + Send,{
pub attrs: Attrs_table,
pub data_attributes: Vec<(&'static str, String)>,
pub aria_attributes: Vec<(&'static str, String)>,
pub events: T::Events,
pub children: Vec<Box<dyn TableContent<T>>>,
}
Fields§
§attrs: Attrs_table
§data_attributes: Vec<(&'static str, String)>
§aria_attributes: Vec<(&'static str, String)>
§events: T::Events
§children: Vec<Box<dyn TableContent<T>>>
Implementations§
Trait Implementations§
source§impl<T> Element<T> for table<T>where
T: OutputType + Send,
impl<T> Element<T> for table<T>where T: OutputType + Send,
source§fn attribute_names() -> &'static [&'static str]
fn attribute_names() -> &'static [&'static str]
Get a list of the attribute names for this element. Read more
source§fn required_children() -> &'static [&'static str]
fn required_children() -> &'static [&'static str]
Get a list of the element names of required children for this element. Read more