I use doxygen to document a C++ codebase which uses some packed structs to represent communication buffers. I usually like the alphabetical order of members doxygen uses because it makes it easier to find something in the documentation. However, I'd prefer the documentation of my packed structs to show the fields in the order I've declared them, because in that case, the order of declaration matters (among other things, the documentation of some fields like the ones representing CRC values refers to some other fields in the same struct).
Is there a way to choose the order of the fields individually for a specific struct or is SORT_MEMBER_DOCS the only (global) way to control sorting?