macro_rules! children {
( $( $child:expr ),* ) => { ... };
}Expand description
This macro helps to declare children for a Tag element using the ElementBuilder API
ยงExample
Div.with_children(children!("test", Div.with_child("test2")));macro_rules! children {
( $( $child:expr ),* ) => { ... };
}This macro helps to declare children for a Tag element using the ElementBuilder API
Div.with_children(children!("test", Div.with_child("test2")));