try_default 2.0.0

A trait to optionally get the Default if present, or None if there is no Default.
Documentation
1
2
3
4
5
6
7
#![feature(specialization)]

mod try_default;
pub use self::try_default::*;

mod default_not_found;
pub use self::default_not_found::*;