mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-22 21:48:02 +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() {}
|