Crate lombok_macros
Source - Data
- This is an example of how to use the
Lombok procedural macro with get, get_mut, and set attributes. - DisplayDebug
- A procedural macro that implements the
std::fmt::Display trait for a type,
using the standard debug format ({:?}) for formatting. - DisplayDebugFormat
- A procedural macro that implements the
std::fmt::Display trait for a type,
using the detailed debug format ({:#?}) for formatting. - Getter
- This is an example of how to use the
Lombok procedural macro with get attributes. - GetterMut
- This is an example of how to use the
Lombok procedural macro with get_mut attributes. - Setter
- This is an example of how to use the
Lombok procedural macro with set attributes.