#[repr(C)]pub struct lua_CompileOptions {
pub optimizationLevel: c_int,
pub debugLevel: c_int,
pub coverageLevel: c_int,
pub vectorLib: *const c_char,
pub vectorCtor: *const c_char,
pub mutableGlobals: *mut *const c_char,
}
Fields§
§optimizationLevel: c_int
§debugLevel: c_int
§coverageLevel: c_int
§vectorLib: *const c_char
§vectorCtor: *const c_char
§mutableGlobals: *mut *const c_char
Trait Implementations§
Source§impl Clone for lua_CompileOptions
impl Clone for lua_CompileOptions
Source§fn clone(&self) -> lua_CompileOptions
fn clone(&self) -> lua_CompileOptions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for lua_CompileOptions
impl Debug for lua_CompileOptions
Source§impl Default for lua_CompileOptions
impl Default for lua_CompileOptions
Source§impl Hash for lua_CompileOptions
impl Hash for lua_CompileOptions
Source§impl PartialEq for lua_CompileOptions
impl PartialEq for lua_CompileOptions
impl Copy for lua_CompileOptions
impl Eq for lua_CompileOptions
impl StructuralPartialEq for lua_CompileOptions
Auto Trait Implementations§
impl Freeze for lua_CompileOptions
impl RefUnwindSafe for lua_CompileOptions
impl !Send for lua_CompileOptions
impl !Sync for lua_CompileOptions
impl Unpin for lua_CompileOptions
impl UnwindSafe for lua_CompileOptions
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