pub type TreeSize = u64;Expand description
Used to store the binary sizes of TreeVecs and TreeSlices in bytes. This would usually be
done utilizing usize, yet the size of usize is platform dependend. Since part of the appeal
of a serializable tree data structure is to store it to a filesystem and load it, it seems
beneficial to fix this to 64Bit on any platform to not introduce a dependency of the fileformat
to the platform it has been generated on.