FlatMapAccess and FlatStructAccess does not need to be public
This commit is contained in:
parent
c399e9c368
commit
a901f50850
@ -2841,7 +2841,7 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(any(feature = "std", feature = "alloc"))]
|
#[cfg(any(feature = "std", feature = "alloc"))]
|
||||||
pub struct FlatMapAccess<'a, 'de: 'a, E> {
|
struct FlatMapAccess<'a, 'de: 'a, E> {
|
||||||
iter: slice::Iter<'a, Option<(Content<'de>, Content<'de>)>>,
|
iter: slice::Iter<'a, Option<(Content<'de>, Content<'de>)>>,
|
||||||
pending_content: Option<&'a Content<'de>>,
|
pending_content: Option<&'a Content<'de>>,
|
||||||
_marker: PhantomData<E>,
|
_marker: PhantomData<E>,
|
||||||
@ -2897,7 +2897,7 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(any(feature = "std", feature = "alloc"))]
|
#[cfg(any(feature = "std", feature = "alloc"))]
|
||||||
pub struct FlatStructAccess<'a, 'de: 'a, E> {
|
struct FlatStructAccess<'a, 'de: 'a, E> {
|
||||||
iter: slice::IterMut<'a, Option<(Content<'de>, Content<'de>)>>,
|
iter: slice::IterMut<'a, Option<(Content<'de>, Content<'de>)>>,
|
||||||
pending_content: Option<Content<'de>>,
|
pending_content: Option<Content<'de>>,
|
||||||
fields: &'static [&'static str],
|
fields: &'static [&'static str],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user