pub enum LuaObject {
Str(String),
Int(i32),
Code(LuacCodeObject),
None,
}Variants§
Trait Implementations§
impl Eq for LuaObject
impl StructuralPartialEq for LuaObject
Auto Trait Implementations§
impl Freeze for LuaObject
impl RefUnwindSafe for LuaObject
impl Send for LuaObject
impl Sync for LuaObject
impl Unpin for LuaObject
impl UnwindSafe for LuaObject
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