basically, I have a structure for which I also need to store some flags. in C, I would store it in an unsigned int and each bit represents a different flag. Is this done in the same way in zig, or would a struct of u1's with some default values:
const options = struct {
option1: u1 = 0,
option2: u1 = 0,
option3: u1 = 1,
...
}
be better? Also, much less important, name it flags or options?