[][src]Constant serde_syn::config::ANYTHING_GOES

pub const ANYTHING_GOES: Config

A configuration to parse any combination of supported syntaxes.

{
    text = "Hello, World!",
    hashmap(
        [1] => 1,
        [1, 2] => 2,
        [1, 2, 3] => 3,
    ),
    oneof: "MyVariant" {
        data: ["a", "b", "c"],
    },
}