#[repr(C)]pub struct lua_TValue {
pub value: Value,
pub extra: [c_int; 1],
pub tt: c_int,
}Fields§
§value: Value§extra: [c_int; 1]§tt: c_intImplementations§
Trait Implementations§
Source§impl Clone for lua_TValue
impl Clone for lua_TValue
Source§fn clone(&self) -> lua_TValue
fn clone(&self) -> lua_TValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for lua_TValue
Source§impl Debug for lua_TValue
impl Debug for lua_TValue
Auto Trait Implementations§
impl !Send for lua_TValue
impl !Sync for lua_TValue
impl Freeze for lua_TValue
impl RefUnwindSafe for lua_TValue
impl Unpin for lua_TValue
impl UnsafeUnpin for lua_TValue
impl UnwindSafe for lua_TValue
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