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