mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-28 06:57:54 +00:00
22 lines
504 B
Rust
22 lines
504 B
Rust
#[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.
|
|
#[doc(hidden)]
|
|
pub mod doc;
|
|
|
|
#[doc(hidden)]
|
|
pub mod size_hint;
|
|
|
|
#[doc(hidden)]
|
|
pub mod string;
|
|
|
|
#[cfg(all(not(no_serde_derive), any(feature = "std", feature = "alloc")))]
|
|
#[doc(hidden)]
|
|
pub use self::content::Content;
|
|
#[doc(hidden)]
|
|
pub use self::seed::InPlaceSeed;
|
|
#[doc(hidden)]
|
|
pub use crate::lib::result::Result;
|