Skip to main content

luaur_code_gen/records/
node_slot_state.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
2#[repr(C)]
3pub struct NodeSlotState {
4    pub pointer: u32,
5    pub knownToNotBeNil: bool,
6}
7
8#[allow(non_upper_case_globals)]
9impl NodeSlotState {
10    pub const pointer: u32 = 0;
11    pub const knownToNotBeNil: bool = false;
12}