1/// Max number of user flags.
2pub const MAX_USER_FLAGS: usize = 8;
34/// User flags.
5#[derive(num_enum::IntoPrimitive)]
6#[repr(u8)]
7#[non_exhaustive]
8pub enum UserFlag {
9/// Is initialized.
10Initialized,
11// CHECK: should have no more than `MAX_USER_FLAGS` of flags.
12}