#[repr(i32)]pub enum FunctionParameterMode {
Undefined = 0,
FuncParamIn = 1,
FuncParamOut = 2,
FuncParamInout = 3,
FuncParamVariadic = 4,
FuncParamTable = 5,
}
Variants§
Undefined = 0
FuncParamIn = 1
FuncParamOut = 2
FuncParamInout = 3
FuncParamVariadic = 4
FuncParamTable = 5
Implementations§
Trait Implementations§
Source§impl Clone for FunctionParameterMode
impl Clone for FunctionParameterMode
Source§fn clone(&self) -> FunctionParameterMode
fn clone(&self) -> FunctionParameterMode
Returns a duplicate of the value. Read more
1.0.0 · 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 FunctionParameterMode
impl Debug for FunctionParameterMode
Source§impl Default for FunctionParameterMode
impl Default for FunctionParameterMode
Source§fn default() -> FunctionParameterMode
fn default() -> FunctionParameterMode
Returns the “default value” for a type. Read more
Source§impl From<FunctionParameterMode> for i32
impl From<FunctionParameterMode> for i32
Source§fn from(value: FunctionParameterMode) -> i32
fn from(value: FunctionParameterMode) -> i32
Converts to this type from the input type.
Source§impl Hash for FunctionParameterMode
impl Hash for FunctionParameterMode
Source§impl Ord for FunctionParameterMode
impl Ord for FunctionParameterMode
Source§fn cmp(&self, other: &FunctionParameterMode) -> Ordering
fn cmp(&self, other: &FunctionParameterMode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FunctionParameterMode
impl PartialEq for FunctionParameterMode
Source§impl PartialOrd for FunctionParameterMode
impl PartialOrd for FunctionParameterMode
impl Copy for FunctionParameterMode
impl Eq for FunctionParameterMode
impl StructuralPartialEq for FunctionParameterMode
Auto Trait Implementations§
impl Freeze for FunctionParameterMode
impl RefUnwindSafe for FunctionParameterMode
impl Send for FunctionParameterMode
impl Sync for FunctionParameterMode
impl Unpin for FunctionParameterMode
impl UnwindSafe for FunctionParameterMode
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