Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::DataTypes;

/**
 * Describes a single node of a binar file
 * A node can hold any amount of data and sub-nodes
 */
pub struct Node {
    pub data: Vec<DataTypes>,
    pub children: Vec<Node>,
}

impl Node {}