Wie kann ich ein HashMap-Literal in Rust erstellen? In Python kann ich das so machen: hashmap = { 'element0': { 'name': 'My New Element', 'childs': { 'child0': { 'name': 'Child For Element 0', 'childs': { ... } } } }, ... } Und in Go so: type Node struct { name string childs map[string]Node }...