A simple packer, but no implement copy
Examples
use NoCopy;
let mut n = NoCopy;
let _moved = n;
let _use_after_moved = n;
A simple packer, but no implement copy
use no_copy::NoCopy;
let mut n = NoCopy(3);
let _moved = n;
let _use_after_moved = n;