Struct with flattened field.
| 58 | #[derive(Serialize)] |
| 59 | /// Struct with flattened field. |
| 60 | struct Author { |
| 61 | name: String, |
| 62 | #[serde(flatten)] |
| 63 | name: AuthorName, |
| 64 | } |
| 65 | |
| 66 | #[tsync] |
| 67 | #[derive(Serialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected