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
use super :: *;

#[ derive( Debug, PartialEq, Eq, the_module ::From ) ]
struct StructNamedFields
{
  a: i32,
  b: bool,
}

include!( "./only_test/multiple_named.rs" );