#[repr(C)]pub struct luaL_Buffer {
pub p: *mut c_char,
pub lvl: c_int,
pub L: *mut lua_State,
pub buffer: [c_char; 8192],
}
Fields§
§p: *mut c_char
§lvl: c_int
§L: *mut lua_State
§buffer: [c_char; 8192]
Trait Implementations§
Source§impl Clone for luaL_Buffer
impl Clone for luaL_Buffer
impl Copy for luaL_Buffer
Auto Trait Implementations§
impl Freeze for luaL_Buffer
impl RefUnwindSafe for luaL_Buffer
impl !Send for luaL_Buffer
impl !Sync for luaL_Buffer
impl Unpin for luaL_Buffer
impl UnwindSafe for luaL_Buffer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more