mirror of
https://github.com/serde-rs/serde.git
synced 2025-10-03 07:45:38 +00:00
Merge pull request #2547 from dtolnay/tombstone
Delete tombstones of the `__private` module
This commit is contained in:
commit
fe4e3fd3b0
@ -1231,9 +1231,9 @@ pub trait Deserializer<'de>: Sized {
|
|||||||
self,
|
self,
|
||||||
_: crate::actually_private::T,
|
_: crate::actually_private::T,
|
||||||
visitor: V,
|
visitor: V,
|
||||||
) -> Result<crate::private::de::Content<'de>, Self::Error>
|
) -> Result<crate::__private::de::Content<'de>, Self::Error>
|
||||||
where
|
where
|
||||||
V: Visitor<'de, Value = crate::private::de::Content<'de>>,
|
V: Visitor<'de, Value = crate::__private::de::Content<'de>>,
|
||||||
{
|
{
|
||||||
self.deserialize_any(visitor)
|
self.deserialize_any(visitor)
|
||||||
}
|
}
|
||||||
|
@ -307,11 +307,6 @@ pub use crate::ser::{Serialize, Serializer};
|
|||||||
#[path = "private/mod.rs"]
|
#[path = "private/mod.rs"]
|
||||||
pub mod __private;
|
pub mod __private;
|
||||||
|
|
||||||
#[allow(unused_imports)]
|
|
||||||
use self::__private as export;
|
|
||||||
#[allow(unused_imports)]
|
|
||||||
use self::__private as private;
|
|
||||||
|
|
||||||
#[path = "de/seed.rs"]
|
#[path = "de/seed.rs"]
|
||||||
mod seed;
|
mod seed;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user