1 2 3 4 5 6 7 8 9 10
use crate::Node; impl From<String> for Node<String> { fn from(data: String) -> Self { Self { data, children: vec![], } } }