Expand description
Lazy RE
Sometimes we’re lazy and we don’t need to fully reverse engineer a struct, so we can omit some fields we’re not interested in.
With this library, you can generate padding without the need of doing mental math every time you need to change your struct, so you won’t have to keep track of the padding in your head, this proc macro will generate it for you!
Attribute Macros
This proc macro will generate padding fields for your struct every time you have a struct that has fields with the macro.
Derive Macros
This macro is in charge of generating the Debug implementation for the struct and the ::new
method. It is optional to include.