serde_core/private/
mod.rs

1#[cfg(all(not(no_serde_derive), any(feature = "std", feature = "alloc")))]
2mod content;
3mod seed;
4
5// FIXME: #[cfg(doctest)] once https://github.com/rust-lang/rust/issues/67295 is fixed.
6#[doc(hidden)]
7pub mod doc;
8
9#[doc(hidden)]
10pub mod size_hint;
11
12#[doc(hidden)]
13pub mod string;
14
15#[cfg(all(not(no_serde_derive), any(feature = "std", feature = "alloc")))]
16#[doc(hidden)]
17pub use self::content::Content;
18#[doc(hidden)]
19pub use self::seed::InPlaceSeed;
20#[doc(hidden)]
21pub use crate::lib::result::Result;