pub trait Renderable: DynClone + Debug { fn render(&self) -> Node; fn to_html(&self) -> String { ... } }