mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-30 14:31:53 +00:00
11 lines
128 B
Rust
11 lines
128 B
Rust
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[derive(Deserialize)]
|
|
struct S {
|
|
string: String,
|
|
slice: [u8],
|
|
}
|
|
|
|
fn main() {}
|