Enum Serialization with Tag
Add the following to Cargo.toml
toml
enser = "0.1.1"
diff
#[derive(Debug, Deserialize, Serialize)]
+ #[enser::enser]
enum MyEnum {
Tbd,
None,
Some(u32),
Named { value: u32 },
}
Given the following enum:
```rust
enum MyEnum { Tbd, None, Some(u32), Named { value: u32 }, } ```
When serializing Vec<MyEnum>
, the output is:
```yaml
my_enums: - Tbd - None - !Some 123 - !Named value: 456
{ "without_tuple": [ "Tbd", "None", { "Some": 123 } { "Named": { "value": 456 } } ] } ```
When the #[enser::enser]
attribute is added:
diff
#[derive(Debug, Deserialize, Serialize)]
+ #[enser::enser]
enum MyEnum { .. }
The output is:
```yaml
my_enums: - !Tbd null - !None null - !Some 123 - !Named value: 456
{ "my_enums": [ { "Tbd": null }, { "None": null }, { "Some": 123 }, { "Named": { "value": 456 } } ] } ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.