#[repr(C)]pub enum LuauBytecodeType {
Show 15 variants
LBC_TYPE_NIL = 0,
LBC_TYPE_BOOLEAN = 1,
LBC_TYPE_NUMBER = 2,
LBC_TYPE_STRING = 3,
LBC_TYPE_TABLE = 4,
LBC_TYPE_FUNCTION = 5,
LBC_TYPE_THREAD = 6,
LBC_TYPE_USERDATA = 7,
LBC_TYPE_VECTOR = 8,
LBC_TYPE_BUFFER = 9,
LBC_TYPE_ANY = 15,
LBC_TYPE_TAGGED_USERDATA_BASE = 64,
LBC_TYPE_TAGGED_USERDATA_END = 96,
LBC_TYPE_OPTIONAL_BIT = 128,
LBC_TYPE_INVALID = 256,
}Variants§
LBC_TYPE_NIL = 0
LBC_TYPE_BOOLEAN = 1
LBC_TYPE_NUMBER = 2
LBC_TYPE_STRING = 3
LBC_TYPE_TABLE = 4
LBC_TYPE_FUNCTION = 5
LBC_TYPE_THREAD = 6
LBC_TYPE_USERDATA = 7
LBC_TYPE_VECTOR = 8
LBC_TYPE_BUFFER = 9
LBC_TYPE_ANY = 15
LBC_TYPE_TAGGED_USERDATA_BASE = 64
LBC_TYPE_TAGGED_USERDATA_END = 96
LBC_TYPE_OPTIONAL_BIT = 128
LBC_TYPE_INVALID = 256
Trait Implementations§
Source§impl Clone for LuauBytecodeType
impl Clone for LuauBytecodeType
Source§fn clone(&self) -> LuauBytecodeType
fn clone(&self) -> LuauBytecodeType
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 moreSource§impl Debug for LuauBytecodeType
impl Debug for LuauBytecodeType
impl Copy for LuauBytecodeType
Auto Trait Implementations§
impl Freeze for LuauBytecodeType
impl RefUnwindSafe for LuauBytecodeType
impl Send for LuauBytecodeType
impl Sync for LuauBytecodeType
impl Unpin for LuauBytecodeType
impl UnsafeUnpin for LuauBytecodeType
impl UnwindSafe for LuauBytecodeType
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