Struct sql_ast::ast::WindowSpec [−][src]
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
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for WindowSpecimpl Send for WindowSpecimpl Sync for WindowSpecimpl Unpin for WindowSpecimpl UnwindSafe for WindowSpecBlanket Implementations
Mutably borrows from an owned value. Read more