Crate mason_rs
Source - serde
- Serialize and deserialize MASON data to a Rust data structure using
serde.
- Deserializer
- A structure that deserializes MASON into Rust values.
- Serializer
- A structure for serializing Rust values into MASON.
- Value
- Represents any valid MASON value.
- from_reader
- Deserialize an instance of type
T from an I/O stream of MASON. - from_slice
- Deserialize an instance of type
T from bytes of MASON text. - from_str
- Deserialize an instance of type
T from a string of MASON text. - to_string
- Serialize the given data structure as a String of MASON.
- to_writer
- Serialize the given data structure as MASON into the I/O stream.