Module de

Source
Expand description

Hjson Deserialization

This module provides for Hjson deserialization with the type Deserializer.

Structs§

Deserializer
A structure that deserializes Hjson into Rust values.
StreamDeserializer
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.