useelvis_core::{derive::Setter, Node};/// `List` is a set of poor orphan children, they don't have any style, just blowing in the wind.
#[derive(Default, Setter)]pubstructList{/// List children
pubchildren:Vec<Node>,
}implInto<Node>forList{fninto(self)-> Node{Node::default().children(self.children)}}