no-copy 0.1.0

A simple packer, but no implement copy
Documentation
1
2
3
4
5
6
7
8
9
10
11
A simple packer, but no implement copy

# Examples

```rust,compile_fail
use no_copy::NoCopy;

let mut n = NoCopy(3);
let _moved = n;
let _use_after_moved = n;
```