We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b92c80 + 3f120fb commit 87d41b5Copy full SHA for 87d41b5
serde/src/de/mod.rs
@@ -1714,7 +1714,7 @@ pub trait SeqAccess<'de> {
1714
}
1715
1716
1717
-impl<'de, 'a, A> SeqAccess<'de> for &'a mut A
+impl<'de, 'a, A: ?Sized> SeqAccess<'de> for &'a mut A
1718
where
1719
A: SeqAccess<'de>,
1720
{
@@ -1867,7 +1867,7 @@ pub trait MapAccess<'de> {
1867
1868
1869
1870
-impl<'de, 'a, A> MapAccess<'de> for &'a mut A
+impl<'de, 'a, A: ?Sized> MapAccess<'de> for &'a mut A
1871
1872
A: MapAccess<'de>,
1873
0 commit comments