pub struct RoutineName<'a> {
pub name: QualifiedName<'a>,
pub args: Option<Vec<RoutineArgType<'a>>>,
}Expand description
A routine name together with an optional argument-type list.
The argument list is used only for disambiguation when overloaded routines exist.
Fields§
§name: QualifiedName<'a>§args: Option<Vec<RoutineArgType<'a>>>None means no parentheses were written; Some([]) means name().
Trait Implementations§
Source§impl<'a> Clone for RoutineName<'a>
impl<'a> Clone for RoutineName<'a>
Source§fn clone(&self) -> RoutineName<'a>
fn clone(&self) -> RoutineName<'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 RoutineName<'a>
impl<'a> Debug for RoutineName<'a>
Auto Trait Implementations§
impl<'a> Freeze for RoutineName<'a>
impl<'a> RefUnwindSafe for RoutineName<'a>
impl<'a> Send for RoutineName<'a>
impl<'a> Sync for RoutineName<'a>
impl<'a> Unpin for RoutineName<'a>
impl<'a> UnsafeUnpin for RoutineName<'a>
impl<'a> UnwindSafe for RoutineName<'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