luaur_vm/methods/
temp_buffer_temp_buffer_lvmload.rs1use crate::records::temp_buffer::TempBuffer;
2
3impl<T> TempBuffer<T> {
4 pub fn temp_buffer() -> Self {
5 let mut this = Self {
6 L: core::ptr::null_mut(),
7 data: core::ptr::null_mut(),
8 count: 0,
9 };
10 this
11 }
12}