Expand description
Cut down on trivial impl From<A> for B
boilerplate code.
Macros§
- chained_
into - Implement conversion from
A
toZ
viaB
,C
, … - newtype_
wrap - Implement conversion from
T
to its newtype wrapper. - newtype_
wrap_ from_ any - The same as
newtype_wrap
, except that the wrapping is implemented on all typesU
that convert toT
viainto()
.