pub type NodeData = HashMap<Cow<'static, str>, Value>;
Node data: arbitrary key-value properties Uses Cow<’static, str> for keys to avoid allocating static strings
pub struct NodeData { /* private fields */ }