musli/help/
data_model.rs

1//! The data model of Müsli.
2//!
3//! Müsli supports the following fundamental types:
4//!
5//! * Empty[^empty].
6//! * Boolean values.
7//! * Unsigned integers (corresponding to [u8], [u16], [u32], [u64], and
8//!   [u128]).
9//! * Signed integers (corresponding to [i8], [i16], [i32], [i64], and [i128]).
10//! * Floats (corresponding to [f32] and [f64]).
11//! * Optional values[^option].
12//! * Bytes, a raw byte sequence.
13//! * Strings, a byte sequence known to be a valid utf-8 string.
14//! * Sequences[^container].
15//! * Maps[^container]. There is no restriction on the key, and they can contain
16//!   duplicates.
17//! * A variant[^container], which is a simple kind of container containing a
18//!   key and a value. The key is the discriminant identifying the variant.
19//!
20//! These are used as the basis to serialize any Rust type.
21//!
22//! By default, Rust types are mapped like the following:
23//!
24//! * Structs are serialized as maps, where the key is the `#[musli(name =..)]`
25//!   of the field.
26//! * Tuples are serialized as sequences.
27//! * Enums are serialized as variants, where the key is the `#[musli(name =
28//!   ..)]` of the variant.
29//!
30//! To control the exact behavior of serialization, see the [`derives`] section.
31//!
32//! [^empty]: Empty values serve the purpose of acting as placeholder for things
33//!     which have no value, such as the empty tuple `()` or `PhantomData<T>`.
34//!     Encoders are free to treat them however they want to. For descriptive
35//!     encoders where it's possible, it's typical for empty values to be
36//!     skipped.
37//!
38//! [^option]: This directly corresponds to the `Option<T>` type in Rust. While
39//!     many formats internally handles optionality since it is a requirement to
40//!     skip over unknown fields, this type is given special treatment to ensure
41//!     that formats which are not descriptive can handle them. Without this, it
42//!     would be impossible for the non-packed [`storage`] format to provide
43//!     partial upgrade safety.
44//!
45//! [^container]: There is no particular restriction that containers must
46//!     contain uniform types. However, this is typically enforced by the types
47//!     deriving [`Encode`] and [`Decode`] in Rust.
48//!
49//! [`storage`]: crate::storage
50//! [`derives`]: super::derives
51//! [`Encode`]: crate::Encode
52//! [`Decode`]: crate::Decode