mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-29 22:11:09 +00:00
12 lines
130 B
Rust
12 lines
130 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Serialize)]
|
|
#[serde(variant_identifier)]
|
|
enum F {
|
|
A,
|
|
B,
|
|
}
|
|
|
|
fn main() {}
|