protocol/types/
mod.rs

1//! Contains newtypes over the standard library types
2//! that support finer-grained serialization settings.
3
4pub use self::numerics::Integer;
5pub use self::string::String;
6pub use self::unimplemented::Unimplemented;
7pub use self::vec::Vec;
8
9mod array;
10mod char;
11/// Definitions for the `std::collections` module.
12mod collections;
13mod cstring;
14mod marker;
15mod numerics;
16mod option;
17mod range;
18mod string;
19mod tuple;
20/// Definitions for smart pointers in the `std` module.
21mod smart_ptr;
22mod unimplemented;
23#[cfg(feature = "uuid")]
24mod uuid;
25mod vec;
26