treenode 0.1.0

A simple Node struct
Documentation
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![],
        }
    }
}