Struct sqlparser::ast::WindowSpec
source · pub struct WindowSpec {
pub partition_by: Vec<Expr>,
pub order_by: Vec<OrderByExpr>,
pub window_frame: Option<WindowFrame>,
}Expand description
A window specification (i.e. OVER (PARTITION BY .. ORDER BY .. etc.))
Fields§
§partition_by: Vec<Expr>§order_by: Vec<OrderByExpr>§window_frame: Option<WindowFrame>Trait Implementations§
source§impl Clone for WindowSpec
impl Clone for WindowSpec
source§fn clone(&self) -> WindowSpec
fn clone(&self) -> WindowSpec
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