luaur-vm 0.1.3

The Luau register virtual machine and standard library (Rust).
Documentation
#[allow(non_camel_case_types)]
#[derive(Debug, Clone, Copy)]
#[repr(C)]
pub struct stringtable {
    pub(crate) hash: *mut *mut crate::records::t_string::TString,
    pub(crate) nuse: u32,
    pub(crate) size: core::ffi::c_int,
}

#[allow(non_camel_case_types)]
pub type Stringtable = stringtable;

impl Default for stringtable {
    fn default() -> Self {
        Self {
            hash: core::ptr::null_mut(),
            nuse: 0,
            size: 0,
        }
    }
}