pub enum WindowFunction {
AggregateFunction(AggregateFunction),
BuiltInWindowFunction(BuiltInWindowFunction),
}
Expand description
WindowFunction
Variants§
AggregateFunction(AggregateFunction)
window function that leverages an aggregate function
BuiltInWindowFunction(BuiltInWindowFunction)
window function that leverages a built-in window function
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 Display for WindowFunction
impl Display for WindowFunction
source§impl FromStr for WindowFunction
impl FromStr for WindowFunction
§type Err = DataFusionError
type Err = DataFusionError
The associated error which can be returned from parsing.
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
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§
§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