Expand description
JSON support for Müsli suitable for network and usually browser communication.
JSON encoding is fully upgrade stable:
- ✔ Can tolerate missing fields if they are annotated with
#[musli(default)]. - ✔ Can skip over unknown fields.
use musli::{Encode, Decode};
#[derive(Debug, PartialEq, Encode, Decode)]
struct Version1 {
name: String,
}
#[derive(Debug, PartialEq, Encode, Decode)]
struct Version2 {
name: String,
#[musli(default)]
age: Option<u32>,
}
let version2 = musli_json::to_vec(&Version2 {
name: String::from("Aristotle"),
age: Some(62),
})?;
let version1: Version1 = musli_json::from_slice(version2.as_slice())?;
assert_eq!(version1, Version1 {
name: String::from("Aristotle"),
});Modules§
- encoding
- Module that defines
Encodingwhith allows for customization of the encoding format, and theDEFAULTencoding configuration.
Structs§
Traits§
- Parser
- Trait governing how JSON is parsed depending on the kind of buffer provided.
Functions§
- decode
- Decode the given type
Tfrom the givenParserusing theDEFAULTconfiguration. - encode
- Encode the given value to the given
Writerusing theDEFAULTconfiguration. - from_
slice - Decode the given type
Tfrom the given slice using theDEFAULTconfiguration. - from_
str - Decode the given type
Tfrom the given string using theDEFAULTconfiguration. - to_
fixed_ bytes - Encode the given value to a fixed-size bytes using the
DEFAULTconfiguration. - to_
string alloc - Encode the given value to a
Stringusing theDEFAULTconfiguration. - to_vec
alloc - Encode the given value to a
Vecusing theDEFAULTconfiguration. - to_
writer std - Encode the given value to the given Write using the
DEFAULTconfiguration.
Type Aliases§
- Result
- Convenient result alias for use with
musli_json.