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