Expand description
A dynamically-typed representation of libconfig data
This module provides the Value enum which represents any valid libconfig value.
It can be used when you don’t know the structure of the data at compile time.
Structs§
- Config
- A libconfig document that tracks top-level formatting.
Enums§
- Value
- A dynamically-typed value that can represent any libconfig data
Functions§
- from_
value - Convert a
Valueto a specific typeT
Type Aliases§
- Map
- A map of string keys to
Values, representing a libconfig group Uses IndexMap to preserve insertion order