Serde Playground

#[derive(Serialize)] enum E { W { a: Option<i32>, b: i32 }, X(i32, i32), Y(i32), Z, } E::W { a: None, b: 7 }