synonym 0.1.6

Customizable derive macro to create newtypes. It peeks into the underlying type to choose which traits should be implemented.
Documentation
mod clone;
mod copy;
mod debug;
mod default;
mod deserialize;
mod eq;
mod hash;
mod ord;
mod partial_eq;
mod partial_ord;
mod serialize;

pub use self::clone::*;
pub use self::copy::*;
pub use self::debug::*;
pub use self::default::*;
pub use self::deserialize::*;
pub use self::eq::*;
pub use self::hash::*;
pub use self::ord::*;
pub use self::partial_eq::*;
pub use self::partial_ord::*;
pub use self::serialize::*;