How can I derive Deserialize
for a struct with objects with different or equal lifetimes inside?
#[derive(Default, Debug, serde::Deserialize, serde::Serialize)]
struct B<'a> {
b: &'a str,
}
#[derive(Default, Debug, serde::Deserialize, serde::Serialize)]
struct C<'a> {
c: &'a str,
}
#[derive(Default, Debug, serde::Deserialize, serde::Serialize)]
struct A<'a> {
b: B<'a>,
c: C<'a>,
}
fn main() {
}
Rustc says this is impossible:
error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'de` due to conflicting requirements
--> src/main.rs:13:5
|
13 | b: B<'a>,
| ^
|
note: first, the lifetime cannot outlive the lifetime 'de as defined on the impl at 11:26...
--> src/main.rs:11:26
|
11 | #[derive(Default, Debug, serde::Deserialize, serde::Serialize)]
| ^^^^^^^^^^^^^^^^^^
= note: ...so that the types are compatible:
expected _IMPL_SERIALIZE_FOR_B::_serde::de::SeqAccess<'_>
found _IMPL_SERIALIZE_FOR_B::_serde::de::SeqAccess<'de>
note: but, the lifetime must be valid for the lifetime 'a as defined on the impl at 12:10...
--> src/main.rs:12:10
|
12 | struct A<'a> {
| ^^
= note: ...so that the types are compatible:
expected _IMPL_SERIALIZE_FOR_B::_serde::Deserialize<'_>
found _IMPL_SERIALIZE_FOR_B::_serde::Deserialize<'_>
I don't understand what causes this problem and how I can fix it. There is a similar question but its answer does not cover this case.