pub struct WindowExpression<V> { /* private fields */ }Implementations§
Source§impl<V> WindowExpression<V>
impl<V> WindowExpression<V>
pub fn partition_by<T, C>(self, column: Column<T, C>) -> Self
pub fn order_by<T, C>( self, column: Column<T, C>, direction: OrderDirection, ) -> Self
pub fn frame( self, units: WindowFrameUnits, start: WindowBoundary, end: WindowBoundary, ) -> Self
Trait Implementations§
Source§impl<V: Clone> Clone for WindowExpression<V>
impl<V: Clone> Clone for WindowExpression<V>
Source§fn clone(&self) -> WindowExpression<V>
fn clone(&self) -> WindowExpression<V>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<V: Debug> Debug for WindowExpression<V>
impl<V: Debug> Debug for WindowExpression<V>
Source§impl<V> Selection for WindowExpression<V>
impl<V> Selection for WindowExpression<V>
type Output = V
fn expressions(self) -> Vec<Expression>
Source§impl<V> SelectionExt for WindowExpression<V>
impl<V> SelectionExt for WindowExpression<V>
fn alias(self, alias: &'static str) -> AliasedSelection<Self>
Auto Trait Implementations§
impl<V> Freeze for WindowExpression<V>
impl<V> RefUnwindSafe for WindowExpression<V>
impl<V> Send for WindowExpression<V>
impl<V> Sync for WindowExpression<V>
impl<V> Unpin for WindowExpression<V>
impl<V> UnsafeUnpin for WindowExpression<V>
impl<V> UnwindSafe for WindowExpression<V>
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