mirror of
https://github.com/serde-rs/serde.git
synced 2025-10-02 07:21:12 +00:00
8 lines
114 B
Rust
8 lines
114 B
Rust
use serde_derive::Deserialize;
|
|
|
|
#[derive(Deserialize)]
|
|
#[serde(default = "default_u")]
|
|
struct Unit;
|
|
|
|
fn main() {}
|