1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Contains newtypes over the standard library types
//! that support finer-grained serialization settings.

pub use self::numerics::Integer;
pub use self::string::String;
pub use self::unimplemented::Unimplemented;
pub use self::vec::Vec;

mod array;
mod char;
/// Definitions for the `std::collections` module.
mod collections;
mod marker;
mod numerics;
mod option;
mod string;
mod tuple;
/// Definitions for smart pointers in the `std` module.
mod smart_ptr;
mod unimplemented;
#[cfg(feature = "uuid")]
mod uuid;
mod vec;