#[repr(u32)]pub enum LuaType {
Nil = 0,
Bool = 1,
Int = 2,
Float = 3,
String = 4,
Table = 5,
Function = 6,
Thread = 7,
Object = 8,
}Variants§
Trait Implementations§
impl Copy for LuaType
impl Eq for LuaType
impl StructuralPartialEq for LuaType
Auto Trait Implementations§
impl Freeze for LuaType
impl RefUnwindSafe for LuaType
impl Send for LuaType
impl Sync for LuaType
impl Unpin for LuaType
impl UnwindSafe for LuaType
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