pub struct RoutineArgType<'a> {
pub mode: Option<FunctionParamDirection>,
pub name: Option<Identifier<'a>>,
pub type_: DataType<'a>,
}Expand description
An argument type entry inside a routine reference’s optional ( args ) list.
Fields§
§mode: Option<FunctionParamDirection>Optional IN / OUT / INOUT modifier.
name: Option<Identifier<'a>>Optional parameter name (present when followed by a type token).
type_: DataType<'a>The argument data type.
Trait Implementations§
Source§impl<'a> Clone for RoutineArgType<'a>
impl<'a> Clone for RoutineArgType<'a>
Source§fn clone(&self) -> RoutineArgType<'a>
fn clone(&self) -> RoutineArgType<'a>
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<'a> Debug for RoutineArgType<'a>
impl<'a> Debug for RoutineArgType<'a>
Auto Trait Implementations§
impl<'a> Freeze for RoutineArgType<'a>
impl<'a> RefUnwindSafe for RoutineArgType<'a>
impl<'a> Send for RoutineArgType<'a>
impl<'a> Sync for RoutineArgType<'a>
impl<'a> Unpin for RoutineArgType<'a>
impl<'a> UnsafeUnpin for RoutineArgType<'a>
impl<'a> UnwindSafe for RoutineArgType<'a>
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