use serde_derive::Serialize; #[derive(Serialize)] struct S { #[serde(rename(serialize = "x", serialize = "y"))] x: (), } fn main() {}