devela/examples/code/enumint.rs
// devela::examples::code::enumint
//
//! Shows how to use the [`enumint!`] declarative macro.
//!
//! # Examples
//!
//! This will create the [`ExampleEnumIntU8`] type.
//! ```
//! # use devela::enumint;
//! enumint![pub ExampleEnumIntU8, i8, -126, 125];
//! ```
//
// Note that having a huge number of variants needs a lot of resources. E.g.:
// enumint![pub ExampleEnumIntU16, u16, 0, 16384]; // +5s to compile
// enumint![pub ExampleEnumIntU16, u16, -16384, 16384]; // +17s +25GB to compile
use devela::enumint;
enumint![pub ExampleEnumIntU8, i8, -126, 126];
fn main() {
assert_eq!(ExampleEnumIntU8::VALID_VALUES, 253);
assert_eq!(ExampleEnumIntU8::NICHE_VALUES, 3);
// We can nest 3 Options before the memory representation increases:
assert_eq!(size_of::<ExampleEnumIntU8>(), 1); // 0 niches used
assert_eq!(size_of::<Option<ExampleEnumIntU8>>(), 1); // 1 niche used
assert_eq!(size_of::<Option<Option<ExampleEnumIntU8>>>(), 1); // 2 niches used
assert_eq!(size_of::<Option<Option<Option<ExampleEnumIntU8>>>>(), 1); // all 3 niches used
assert_eq!(size_of::<Option<Option<Option<Option<ExampleEnumIntU8>>>>>(), 2);
}