3 releases
Uses old Rust 2015
0.1.2 | Nov 4, 2018 |
---|---|
0.1.1 | Nov 4, 2018 |
0.1.0 | Nov 4, 2018 |
#5 in #shorthand
556 downloads per month
Used in 6 crates
(3 directly)
2KB
This crate implements standalone default()
function that can be imported
with use default::default;
and then in your code you can just:
let foo = default();
instead of the usual:
let foo = Default::default();