derive_tools 0.70.1

A collection of derive macros designed to enhance STD.
Documentation
use core ::ops ::Deref;

#[ allow( dead_code) ]
enum EnumTupleEmpty
{
  A(),
  B(),
}

impl Deref for EnumTupleEmpty
{
  type Target = ();
  fn deref( &self ) -> &Self ::Target
  {
  &()
 }
}

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