Expand description
Deserialize HCL data to a Rust data structure.
The Deserializer
implementation tries to follow the HCL JSON Specification
as close as possible.
Structs§
- Deserializer
- A structure that deserializes HCL into Rust values.
Functions§
- from_
body - Interpret a
hcl::Body
as an instance of typeT
. - from_
reader - Deserialize an instance of type
T
from an IO stream of HCL. - from_
slice - Deserialize an instance of type
T
from a byte slice. - from_
str - Deserialize an instance of type
T
from a string of HCL text.