musli_core/
mode.rs

1//! Type that describe a mode of encoding.
2
3/// The binary encoding mode.
4///
5/// The key of fields and variants are encoded by their index, as if
6/// `#[musli(name_type = usize)]` was specified.
7///
8/// See [modes] for more.
9///
10/// [modes]: https://docs.rs/musli/latest/musli/help/derives/index.html#modes
11pub enum Binary {}
12
13/// The text encoding mode.
14///
15/// The key of fields and variants are encoded by their name, as if
16/// `#[musli(name_type = str)]` was specified.
17///
18/// See [modes] for more.
19///
20/// [modes]: https://docs.rs/musli/latest/musli/help/derives/index.html#modes
21pub enum Text {}