protocol 0.3.4

Easy protocol definitions
Documentation
pub use self::numerics::Integer;
pub use self::array::DynArray;
pub use self::string::String;

mod numerics;
#[macro_use]
mod composite;
mod array;
mod string;
mod char;
mod tuple;
mod option;
/// Defintions for the `std::collections` module.
mod collections;
/// Definitions for smart pointers in the `std` module.
mod smart_ptr;

mod util;

#[cfg(feature = "uuid")]
mod uuid;