mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-29 22:11:09 +00:00
10 lines
138 B
Rust
10 lines
138 B
Rust
use serde_derive::Deserialize;
|
|
|
|
#[derive(Deserialize)]
|
|
struct Test<'a> {
|
|
#[serde(borrow = "'a + 'a")]
|
|
s: &'a str,
|
|
}
|
|
|
|
fn main() {}
|