```rust #[derive(Serialize, Deserialize)] struct S { a: u32, b: String, #[serde(other)] other: Map<String, Value>, } ``` ```json {"a":0,"b":"","c":true} ``` This would deserialize into `other` containing "c" => true.