1 2 3 4 5 6 7
use crate::HtmlContent; pub trait HtmlComponent { type Content: HtmlContent; fn into_content(self) -> Self::Content; }