Skip to main content

luaur_code_gen/methods/
native_module_get_refcount.rs

1impl crate::records::native_module::NativeModule {
2    pub fn native_module_get_refcount(&self) -> usize {
3        self.refcount.load(core::sync::atomic::Ordering::Relaxed)
4    }
5}