derive_tools 0.71.1

A collection of derive macros designed to enhance STD.
Documentation
1
2
3
4
5
6
7
8
9
10
#[ test ]
fn not()
{
  let mut x = StructTuple( true, 0 );

  x = !x;

  assert_eq!( x.0, false );
  assert_eq!( x.1, 255 );
}