2018-04-01 15:11:21 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
|
|
|
|
2018-12-28 23:19:24 -06:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2018-06-03 00:19:39 -05:00
|
|
|
#[derive(Serialize)]
|
2018-04-01 15:11:21 -05:00
|
|
|
struct Foo(u32, #[serde(flatten)] HashMap<String, String>);
|
|
|
|
|
|
|
|
fn main() {}
|