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 copy 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<'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
Source§impl PartialEq for FunctionParameterMode
impl PartialEq 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