1 2 3 4 5 6 7
use mt_dom::*; pub type MyNode = Node<&'static str, &'static str, &'static str, &'static str, &'static str>; fn main() { let div: MyNode = element("div", [attr("key", "1")], [leaf("hello")]); println!("{:#?}", div); }