derive_utils
derive_utils copied to clipboard
A procedural macro helper for easily writing custom derives for enums.
Results
3
derive_utils issues
Sort by
recently updated
recently updated
newest added
Currently, trait definitions passed to `quick_derive!`, `derive_trait`, `EnumImpl::from_trait`, `EnumImpl::push_method`, and `EnumImpl::append_items_from_trait` are parsed per time proc-macro called. This is not efficient, and ideally it should be parsed only once.
C-enhancement
Use the specified attribute to specify the delegation destination if variants have multiple fields.
C-enhancement