pub struct RawWindowExpr {
pub func_def: WindowFunctionDefinition,
pub args: Vec<Expr>,
pub partition_by: Vec<Expr>,
pub order_by: Vec<SortExpr>,
pub window_frame: WindowFrame,
pub filter: Option<Box<Expr>>,
pub null_treatment: Option<NullTreatment>,
pub distinct: bool,
}Expand description
This structure is used by WindowFunctionPlanner to plan operators with
custom expressions.
Fields§
§func_def: WindowFunctionDefinition§args: Vec<Expr>§partition_by: Vec<Expr>§order_by: Vec<SortExpr>§window_frame: WindowFrame§filter: Option<Box<Expr>>§null_treatment: Option<NullTreatment>§distinct: boolTrait Implementations§
Source§impl Clone for RawWindowExpr
impl Clone for RawWindowExpr
Source§fn clone(&self) -> RawWindowExpr
fn clone(&self) -> RawWindowExpr
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 moreAuto Trait Implementations§
impl Freeze for RawWindowExpr
impl !RefUnwindSafe for RawWindowExpr
impl Send for RawWindowExpr
impl Sync for RawWindowExpr
impl Unpin for RawWindowExpr
impl !UnwindSafe for RawWindowExpr
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more