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 more