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.
1 parent c399e9c commit a901f50Copy full SHA for a901f50
serde/src/private/de.rs
@@ -2841,7 +2841,7 @@ where
2841
}
2842
2843
#[cfg(any(feature = "std", feature = "alloc"))]
2844
-pub struct FlatMapAccess<'a, 'de: 'a, E> {
+struct FlatMapAccess<'a, 'de: 'a, E> {
2845
iter: slice::Iter<'a, Option<(Content<'de>, Content<'de>)>>,
2846
pending_content: Option<&'a Content<'de>>,
2847
_marker: PhantomData<E>,
@@ -2897,7 +2897,7 @@ where
2897
2898
2899
2900
-pub struct FlatStructAccess<'a, 'de: 'a, E> {
+struct FlatStructAccess<'a, 'de: 'a, E> {
2901
iter: slice::IterMut<'a, Option<(Content<'de>, Content<'de>)>>,
2902
pending_content: Option<Content<'de>>,
2903
fields: &'static [&'static str],
0 commit comments