mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-28 05:21:05 +00:00
10 lines
119 B
Rust
10 lines
119 B
Rust
use serde_derive::Deserialize;
|
|
|
|
#[derive(Deserialize)]
|
|
struct S {
|
|
string: String,
|
|
slice: [u8],
|
|
}
|
|
|
|
fn main() {}
|