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