clone_cell 0.4.2

A Cell that works with a restrictive form of Clone
Documentation
1
2
3
4
5
6
7
8
9
10
use clone_cell::clone::PureClone;

struct Foo;

#[derive(PureClone)]
struct Bar {
    f: Foo,
}

fn main() {}