Expand description
Hjson Deserialization
This module provides for Hjson deserialization with the type Deserializer
.
Structs§
- Deserializer
- A structure that deserializes Hjson into Rust values.
- Stream
Deserializer - Iterator that deserializes a stream into multiple Hjson values.
Functions§
- from_
iter - Decodes a Hjson value from an iterator over an iterator
Iterator<Item=u8>
. - from_
reader - Decodes a Hjson value from a
std::io::Read
. - from_
slice - Decodes a Hjson value from a byte slice
&[u8]
. - from_
str - Decodes a Hjson value from a
&str
.