Attribute macro for code duplication with substitution.
If you find yourself in need of copying a block of code and then making some small changes to fit the new use case, this crate is for you.
The duplicate
attribute macro will duplicate an item any number of times while inserting custom code in the designated places in each duplicate.
For an in-depth explanation of the syntax and features, see the documentation.
```rust use duplicate::duplicate;
/// Trait we want to implement for u8, u16, and u32 trait IsMax { /// Returns true if self is its maximum possible value. fn is_max(&self) -> bool; }
inttype maxvalue; [ u8 ] [ 255 ]; [ u16 ] [ 65535 ]; [ u32 ] [ 4294967295 ]; )] impl IsMax for inttype { fn ismax(&self) -> bool { *self == max_value } }
assert!(!42u8.ismax()); assert!(!42u16.ismax()); assert!(!42u32.is_max()); ``` Expands to:
```rust use duplicate::duplicate;
/// Trait we want to implement for u8, u16, and u32 trait IsMax { /// Returns true if self is its maximum possible value. fn is_max(&self) -> bool; }
impl IsMax for u8 { fn ismax(&self) -> bool { *self == 255 } } impl IsMax for u16 { fn ismax(&self) -> bool { *self == 65535 } } impl IsMax for u32 { fn ismax(&self) -> bool { *self == 4294967_295 } }
assert!(!42u8.ismax()); assert!(!42u16.ismax()); assert!(!42u32.is_max()); ```
This project adheres to Semantic Versioning. During initial development (with versions 0.y.z), bumps to the minor version (y) signify breaking changes.
pretty_errors
(enabled by default). When enabled, errors are more detailed and helpful.module_disambiguation
(enabled by default). When enabled, automatically uses a suitable substitution identifier to disambiguate the name of a module being duplicated. See the documentation for more details. See also #7.pretty_errors
feature is enabled.proc_macro_error
crate is now optional and used by the pretty_errors
feature.This changelog format is based on Keep a Changelog and shows only the changes since the previous version. See the full changelog for changes to all released versions.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.