diff --git a/playground.html b/playground.html new file mode 100644 index 00000000..3d4d1e98 --- /dev/null +++ b/playground.html @@ -0,0 +1,106 @@ + + + + + + + + +

Serde Playground

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