mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-27 13:00:49 +00:00
10 lines
116 B
Rust
10 lines
116 B
Rust
use serde_derive::Serialize;
|
|
|
|
#[derive(Serialize)]
|
|
struct C {
|
|
#[serde(abc = "xyz")]
|
|
x: u32,
|
|
}
|
|
|
|
fn main() {}
|