pub enum FunctionCategory {
Aggregate,
Window,
Scalar,
}Expand description
Function category for completion context filtering.
Variants§
Aggregate
Aggregate functions (SUM, COUNT, AVG, etc.)
Window
Window functions (ROW_NUMBER, RANK, LAG, etc.)
Scalar
Scalar functions (LOWER, CONCAT, ABS, etc.)
Trait Implementations§
Source§impl Clone for FunctionCategory
impl Clone for FunctionCategory
Source§fn clone(&self) -> FunctionCategory
fn clone(&self) -> FunctionCategory
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 FunctionCategory
impl Debug for FunctionCategory
Source§impl PartialEq for FunctionCategory
impl PartialEq for FunctionCategory
impl Copy for FunctionCategory
impl Eq for FunctionCategory
impl StructuralPartialEq for FunctionCategory
Auto Trait Implementations§
impl Freeze for FunctionCategory
impl RefUnwindSafe for FunctionCategory
impl Send for FunctionCategory
impl Sync for FunctionCategory
impl Unpin for FunctionCategory
impl UnwindSafe for FunctionCategory
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.