fn insert_node_if_empty(
    table: &mut Table,
    path: &[&str],
    node: Value
) -> Result<bool, String>
Expand description

Try to insert a node into a tree of tables.

Returns false if the node already exists.