quick-impl 0.2.1

Quickly implement usual methods and traits for enums and structs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod default;
pub use default::expand_default;

mod from;
pub use from::expand_from;

mod try_from;
pub use try_from::expand_try_from;

mod try_into;
pub use try_into::expand_try_into;