pub enum NthValueKind {
First,
Last,
Nth(i64),
}
Expand description
Tag to differentiate special use cases of the NTH_VALUE built-in window function.
Variants§
Trait Implementations§
source§impl Clone for NthValueKind
impl Clone for NthValueKind
source§fn clone(&self) -> NthValueKind
fn clone(&self) -> NthValueKind
Returns a copy 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 NthValueKind
impl Debug for NthValueKind
impl Copy for NthValueKind
Auto Trait Implementations§
impl RefUnwindSafe for NthValueKind
impl Send for NthValueKind
impl Sync for NthValueKind
impl Unpin for NthValueKind
impl UnwindSafe for NthValueKind
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