Crate no_copy

Source
Expand description

A simple packer, but no implement copy

§Examples

use no_copy::NoCopy;

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

Structs§

NoCopy
A simple packer, but no implement copy