treenode 0.1.0

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