#[repr(i32)]pub enum PARAM_TYPE {
NONE = -1,
NIL = 0,
BOOLEAN = 1,
LIGHTUSERDATA = 2,
NUMBER = 3,
STRING = 4,
TABLE = 5,
FUNCTION = 6,
USERDATA = 7,
THREAD = 8,
}Expand description
引数の型種別
Variants§
NONE = -1
NIL = 0
BOOLEAN = 1
LIGHTUSERDATA = 2
NUMBER = 3
STRING = 4
TABLE = 5
FUNCTION = 6
USERDATA = 7
THREAD = 8
Trait Implementations§
Source§impl Clone for PARAM_TYPE
impl Clone for PARAM_TYPE
Source§fn clone(&self) -> PARAM_TYPE
fn clone(&self) -> PARAM_TYPE
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 moreimpl Copy for PARAM_TYPE
Source§impl Debug for PARAM_TYPE
impl Debug for PARAM_TYPE
impl Eq for PARAM_TYPE
Source§impl Hash for PARAM_TYPE
impl Hash for PARAM_TYPE
Source§impl PartialEq for PARAM_TYPE
impl PartialEq for PARAM_TYPE
impl StructuralPartialEq for PARAM_TYPE
Auto Trait Implementations§
impl Freeze for PARAM_TYPE
impl RefUnwindSafe for PARAM_TYPE
impl Send for PARAM_TYPE
impl Sync for PARAM_TYPE
impl Unpin for PARAM_TYPE
impl UnsafeUnpin for PARAM_TYPE
impl UnwindSafe for PARAM_TYPE
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