pub type StringTreeNode = TreeNode<String>;
A common type where the only data is the node’s label as a String.
String
Note that From<&str> is implemented for TreeNode`.
From<&str> is implemented for
pub struct StringTreeNode { /* private fields */ }