datex_core/global/
slots.rs

1use num_enum::TryFromPrimitive;
2use strum::Display;
3
4/// internal slots address space, starting at 0xffffff_00
5#[derive(
6    Debug,
7    Eq,
8    PartialEq,
9    TryFromPrimitive,
10    Copy,
11    Clone,
12    Display,
13    num_enum::IntoPrimitive,
14)]
15#[repr(u32)]
16pub enum InternalSlot {
17    ENDPOINT = 0xffffff00,
18}