default-boxed 0.2.0

Helper trait to help create large struct on heap directly
Documentation
1
2
3
4
5
6
7
8
9
10
use default_boxed::DefaultBoxed;

struct Bar;

#[derive(DefaultBoxed)]
struct Foo {
    a: Bar,
}

fn main() {}