pub enum FunctionParameterMode {
FUNC_PARAM_IN = 105,
FUNC_PARAM_OUT = 111,
FUNC_PARAM_INOUT = 98,
FUNC_PARAM_VARIADIC = 118,
FUNC_PARAM_TABLE = 116,
FUNC_PARAM_DEFAULT = 100,
}Variants§
FUNC_PARAM_IN = 105
FUNC_PARAM_OUT = 111
FUNC_PARAM_INOUT = 98
FUNC_PARAM_VARIADIC = 118
FUNC_PARAM_TABLE = 116
FUNC_PARAM_DEFAULT = 100
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 (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 FunctionParameterMode
Source§impl Debug for FunctionParameterMode
impl Debug for FunctionParameterMode
Source§impl<'de> Deserialize<'de> for FunctionParameterMode
impl<'de> Deserialize<'de> for FunctionParameterMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for FunctionParameterMode
Source§impl PartialEq for FunctionParameterMode
impl PartialEq for FunctionParameterMode
Source§fn eq(&self, other: &FunctionParameterMode) -> bool
fn eq(&self, other: &FunctionParameterMode) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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