pub enum RoutineKind {
Function(Span),
Procedure(Span),
Routine(Span),
}Expand description
How a routine was named in the GRANT ON { FUNCTION | PROCEDURE | ROUTINE } clause.
Variants§
Trait Implementations§
Source§impl Clone for RoutineKind
impl Clone for RoutineKind
Source§fn clone(&self) -> RoutineKind
fn clone(&self) -> RoutineKind
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 RoutineKind
impl Debug for RoutineKind
Auto Trait Implementations§
impl Freeze for RoutineKind
impl RefUnwindSafe for RoutineKind
impl Send for RoutineKind
impl Sync for RoutineKind
impl Unpin for RoutineKind
impl UnsafeUnpin for RoutineKind
impl UnwindSafe for RoutineKind
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