#[repr(C)]pub enum lua_CoStatus {
LUA_CORUN = 0,
LUA_COSUS = 1,
LUA_CONOR = 2,
LUA_COFIN = 3,
LUA_COERR = 4,
}Expand description
The status codes of a coroutine.
This is only returned by lua_costatus.
Variants§
Trait Implementations§
Source§impl Clone for lua_CoStatus
impl Clone for lua_CoStatus
Source§fn clone(&self) -> lua_CoStatus
fn clone(&self) -> lua_CoStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for lua_CoStatus
impl PartialEq for lua_CoStatus
impl Copy for lua_CoStatus
impl Eq for lua_CoStatus
impl StructuralPartialEq for lua_CoStatus
Auto Trait Implementations§
impl Freeze for lua_CoStatus
impl RefUnwindSafe for lua_CoStatus
impl Send for lua_CoStatus
impl Sync for lua_CoStatus
impl Unpin for lua_CoStatus
impl UnwindSafe for lua_CoStatus
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