pub trait ListItemRender<C: Component> {
    const ROOT_ELEMENT_TAG: &'static str;

    fn render(self, item: HtmlUpdater<'_, C>);
}

Required Associated Constants

Required Methods

Implementors