luaur-vm 0.1.2

The Luau register virtual machine and standard library (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[allow(non_camel_case_types)]
#[derive(Debug)]
#[repr(C)]
pub struct LuauBuffer {
    pub(crate) tt: u8,
    pub(crate) marked: u8,
    pub(crate) memcat: u8,
    pub(crate) len: core::ffi::c_uint,
    pub(crate) _align: [u64; 0],
    pub(crate) data: [core::ffi::c_char; 1],
}

#[allow(non_camel_case_types)]
pub type Buffer = LuauBuffer;