This crate allows to automatically implement From
and reverse TryFrom
on suitable
enumerations.
In cases where you have an enumeration that wraps multiple different types, and you desire a
[From
] or reverse [TryFrom
] implementation for each of them (for example, this is rather
common with error handling, when you want to wrap errors from different libraries), this can
be quite tedious to do manually.
Using the From
and TryInto
derive macros from the present crate, this work can be
automated.
Example
Define an Error
type that can be converted from both [std::fmt::Error
] and
[std::io::Error
] (for facilitating use of the question mark operator), and that in addition
offers a variant with a custom message that should not be available for automatic conversion:
This results in the following implementations being generated automatically: