Struct datafusion_expr::expr::WindowFunction
source · pub struct WindowFunction {
pub fun: WindowFunction,
pub args: Vec<Expr>,
pub partition_by: Vec<Expr>,
pub order_by: Vec<Expr>,
pub window_frame: WindowFrame,
}
Expand description
Window function
Fields§
§fun: WindowFunction
Name of the function
args: Vec<Expr>
List of expressions to feed to the functions as arguments
partition_by: Vec<Expr>
List of partition by expressions
order_by: Vec<Expr>
List of order by expressions
window_frame: WindowFrame
Window frame
Implementations§
source§impl WindowFunction
impl WindowFunction
sourcepub fn new(
fun: WindowFunction,
args: Vec<Expr>,
partition_by: Vec<Expr>,
order_by: Vec<Expr>,
window_frame: WindowFrame
) -> Self
pub fn new( fun: WindowFunction, args: Vec<Expr>, partition_by: Vec<Expr>, order_by: Vec<Expr>, window_frame: WindowFrame ) -> Self
Create a new Window expression
Trait Implementations§
source§impl Clone for WindowFunction
impl Clone for WindowFunction
source§fn clone(&self) -> WindowFunction
fn clone(&self) -> WindowFunction
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 WindowFunction
impl Debug for WindowFunction
source§impl Hash for WindowFunction
impl Hash for WindowFunction
source§impl PartialEq<WindowFunction> for WindowFunction
impl PartialEq<WindowFunction> for WindowFunction
source§fn eq(&self, other: &WindowFunction) -> bool
fn eq(&self, other: &WindowFunction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for WindowFunction
impl StructuralEq for WindowFunction
impl StructuralPartialEq for WindowFunction
Auto Trait Implementations§
impl !RefUnwindSafe for WindowFunction
impl Send for WindowFunction
impl Sync for WindowFunction
impl Unpin for WindowFunction
impl !UnwindSafe for WindowFunction
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.