#[repr(i32)]pub enum TypeKind {
Kind_Unknown = 0,
Kind_Primitive = 1,
Kind_Vector = 2,
Kind_Userdata = 3,
}Variants§
Kind_Unknown = 0
Kind_Primitive = 1
primitive type supported by VM - boolean/userdata/etc. No differentiation between types of userdata.
Kind_Vector = 2
TODO: deprecated and not set, but read in ‘visit’
Kind_Userdata = 3
custom userdata type
Implementations§
Source§impl TypeKind
impl TypeKind
pub const Kind_Unknown: Self = Self::Kind_Unknown
pub const Kind_Primitive: Self = Self::Kind_Primitive
pub const Kind_Vector: Self = Self::Kind_Vector
pub const Kind_Userdata: Self = Self::Kind_Userdata
Trait Implementations§
impl Copy for TypeKind
impl Eq for TypeKind
impl StructuralPartialEq for TypeKind
Auto Trait Implementations§
impl Freeze for TypeKind
impl RefUnwindSafe for TypeKind
impl Send for TypeKind
impl Sync for TypeKind
impl Unpin for TypeKind
impl UnsafeUnpin for TypeKind
impl UnwindSafe for TypeKind
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