pub enum WindowFrameBound<'a> {
UnboundedPreceding(Span),
Preceding(Expression<'a>, Span),
CurrentRow(Span),
Following(Expression<'a>, Span),
UnboundedFollowing(Span),
}Expand description
One bound in a window frame clause
Variants§
UnboundedPreceding(Span)
UNBOUNDED PRECEDING
Preceding(Expression<'a>, Span)
CurrentRow(Span)
CURRENT ROW
Following(Expression<'a>, Span)
UnboundedFollowing(Span)
UNBOUNDED FOLLOWING
Trait Implementations§
Source§impl<'a> Clone for WindowFrameBound<'a>
impl<'a> Clone for WindowFrameBound<'a>
Source§fn clone(&self) -> WindowFrameBound<'a>
fn clone(&self) -> WindowFrameBound<'a>
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<'a> Debug for WindowFrameBound<'a>
impl<'a> Debug for WindowFrameBound<'a>
Auto Trait Implementations§
impl<'a> Freeze for WindowFrameBound<'a>
impl<'a> RefUnwindSafe for WindowFrameBound<'a>
impl<'a> Send for WindowFrameBound<'a>
impl<'a> Sync for WindowFrameBound<'a>
impl<'a> Unpin for WindowFrameBound<'a>
impl<'a> UnsafeUnpin for WindowFrameBound<'a>
impl<'a> UnwindSafe for WindowFrameBound<'a>
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