serde-private-core 1.0.0

copy-paste of serde_core's `private` modules
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(all(not(no_serde_derive), any(feature = "std", feature = "alloc")))]
mod content;
mod seed;

// FIXME: #[cfg(doctest)] once https://github.com/rust-lang/rust/issues/67295 is fixed.
pub mod doc;

pub mod size_hint;

pub mod string;

#[cfg(all(not(no_serde_derive), any(feature = "std", feature = "alloc")))]
pub use self::content::Content;
pub use self::seed::InPlaceSeed;
pub use crate::lib::result::Result;