mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-27 04:50:36 +00:00
11 lines
161 B
Rust
11 lines
161 B
Rust
use serde_derive::Serialize;
|
|
|
|
#[derive(Serialize)]
|
|
#[serde(bound = ""huh)]
|
|
pub struct Struct {
|
|
#[serde(rename = ""what)]
|
|
pub field: i32,
|
|
}
|
|
|
|
fn main() {}
|