derive_more
derive_more copied to clipboard
Some more derive(Trait) options
It is briefly described in the docs and tests so I spare the duplicate information open the discussion by means of an example. I felt this is needed when working...
Could you consider adding support for `#[error(forward)]` which provide the same functionality as `#[error(transparent)]` in the [thiserror](https://docs.rs/thiserror/latest/thiserror/) crate? (Use cases are explained there.) In short, this would make `fn source()`...
The docs for [Div](https://docs.rs/derive_more/latest/derive_more/derive.Div.html), `Rem`, `Shl` and `Shr` are showing the docs for `Mul` instead. The culprit is most likely the following: https://github.com/JelteF/derive_more/blob/3216eaf1cbcd081497add134ddda94a43344ae2d/impl/src/lib.rs#L221-L225 It seems that there are no `doc/(div|rem|shl|shr).md`,...