derive_tools 0.70.1

A collection of derive macros designed to enhance STD.
Documentation
1
2
3
4
5
6
7
8
#![allow(unused_imports)]
use super :: *;
use crate ::the_module :: { AsMut, AsRef, Deref, DerefMut, From, Index, IndexMut, InnerFrom, Not, New };

#[ derive( Debug, Clone, Copy, PartialEq, Default, From, Deref, DerefMut, AsRef, AsMut ) ]
pub struct IsTransparent(bool);

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