The package provides a malleable tree structure.
```rust let tree = configuration::format::TOML::parse(r#" message = "one"
[foo.bar]
message = "two"
[foo.baz]
answer = 42
"#).unwrap();
asserteq!(tree.get::
let tree = tree.branch("foo.baz").unwrap();
assert_eq!(tree.get::
Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.