pub enum AlterFunctionKind {
Function,
Aggregate,
Procedure,
}Expand description
Function-like object type used by AlterFunction.
Variants§
Trait Implementations§
Source§impl Clone for AlterFunctionKind
impl Clone for AlterFunctionKind
Source§fn clone(&self) -> AlterFunctionKind
fn clone(&self) -> AlterFunctionKind
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 AlterFunctionKind
impl Debug for AlterFunctionKind
Source§impl<'de> Deserialize<'de> for AlterFunctionKind
impl<'de> Deserialize<'de> for AlterFunctionKind
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 Display for AlterFunctionKind
impl Display for AlterFunctionKind
Source§impl Hash for AlterFunctionKind
impl Hash for AlterFunctionKind
Source§impl Ord for AlterFunctionKind
impl Ord for AlterFunctionKind
Source§fn cmp(&self, other: &AlterFunctionKind) -> Ordering
fn cmp(&self, other: &AlterFunctionKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AlterFunctionKind
impl PartialEq for AlterFunctionKind
Source§impl PartialOrd for AlterFunctionKind
impl PartialOrd for AlterFunctionKind
Source§impl Serialize for AlterFunctionKind
impl Serialize for AlterFunctionKind
Source§impl Visit for AlterFunctionKind
impl Visit for AlterFunctionKind
Source§impl VisitMut for AlterFunctionKind
impl VisitMut for AlterFunctionKind
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for AlterFunctionKind
impl StructuralPartialEq for AlterFunctionKind
Auto Trait Implementations§
impl Freeze for AlterFunctionKind
impl RefUnwindSafe for AlterFunctionKind
impl Send for AlterFunctionKind
impl Sync for AlterFunctionKind
impl Unpin for AlterFunctionKind
impl UnsafeUnpin for AlterFunctionKind
impl UnwindSafe for AlterFunctionKind
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