pub enum RoutineKind {
Function,
Procedure,
Aggregate,
Window,
}Variants§
Function
Regular SQL/PL function — pg_proc.prokind = 'f'.
Procedure
Stored procedure — prokind = 'p'. Distinct from functions
in that they can manage transactions.
Aggregate
Aggregate function — prokind = 'a' (sum, avg, etc).
Window
Window function — prokind = 'w'.
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 (const: unstable) · 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
Source§impl<'de> Deserialize<'de> for RoutineKind
impl<'de> Deserialize<'de> for RoutineKind
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 RoutineKind
impl PartialEq for RoutineKind
Source§fn eq(&self, other: &RoutineKind) -> bool
fn eq(&self, other: &RoutineKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RoutineKind
impl Serialize for RoutineKind
impl Copy for RoutineKind
impl Eq for RoutineKind
impl StructuralPartialEq 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