Enum sqlparser::ast::WindowFrameBound
source · pub enum WindowFrameBound {
CurrentRow,
Preceding(Option<Box<Expr>>),
Following(Option<Box<Expr>>),
}
Expand description
Specifies WindowFrame’s start_bound
and end_bound
Variants§
CurrentRow
CURRENT ROW
Preceding(Option<Box<Expr>>)
<N> PRECEDING
or UNBOUNDED PRECEDING
Following(Option<Box<Expr>>)
<N> FOLLOWING
or UNBOUNDED FOLLOWING
.
Trait Implementations§
source§impl Clone for WindowFrameBound
impl Clone for WindowFrameBound
source§fn clone(&self) -> WindowFrameBound
fn clone(&self) -> WindowFrameBound
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 WindowFrameBound
impl Debug for WindowFrameBound
source§impl Display for WindowFrameBound
impl Display for WindowFrameBound
source§impl Hash for WindowFrameBound
impl Hash for WindowFrameBound
source§impl Ord for WindowFrameBound
impl Ord for WindowFrameBound
source§fn cmp(&self, other: &WindowFrameBound) -> Ordering
fn cmp(&self, other: &WindowFrameBound) -> 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 WindowFrameBound
impl PartialEq for WindowFrameBound
source§fn eq(&self, other: &WindowFrameBound) -> bool
fn eq(&self, other: &WindowFrameBound) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for WindowFrameBound
impl PartialOrd for WindowFrameBound
source§fn partial_cmp(&self, other: &WindowFrameBound) -> Option<Ordering>
fn partial_cmp(&self, other: &WindowFrameBound) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for WindowFrameBound
impl StructuralEq for WindowFrameBound
impl StructuralPartialEq for WindowFrameBound
Auto Trait Implementations§
impl RefUnwindSafe for WindowFrameBound
impl Send for WindowFrameBound
impl Sync for WindowFrameBound
impl Unpin for WindowFrameBound
impl UnwindSafe for WindowFrameBound
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