Trait ElementChild
pub trait ElementChild<NewChild>where
NewChild: IntoRender,{
type Output;
// Required method
fn child(self, child: NewChild) -> Self::Output;
}
Expand description
Adds a child to the element.
Required Associated Types§
type Output
type Output
The type of the element, with the child added.