Crate useless_setter_maker

Source

Attribute Macrosยง

make_setters
Generates builder-style setter methods for struct fields, enabling a fluent, chainable API for struct initialization. Each setter follows the pattern <prefix>_<suffix> (default: with_<field_name>), accepts any type implementing Into<T> (where T is the field type), and returns a modified instance.