mirror of
https://github.com/serde-rs/serde.git
synced 2025-10-02 07:21:12 +00:00
5 lines
104 B
Rust
5 lines
104 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct GenericTupleStruct<T, U>(T, U);
|