pub struct WindowFunction {
pub function_name: String,
pub arguments: Vec<Box<dyn Expr>>,
pub window_definition: WindowDefinition,
pub kind: WindowFunctionKind,
}
Fields§
§function_name: String
§arguments: Vec<Box<dyn Expr>>
§window_definition: WindowDefinition
§kind: WindowFunctionKind
Trait Implementations§
Source§impl Clone for WindowFunction
impl Clone for WindowFunction
Source§fn clone(&self) -> WindowFunction
fn clone(&self) -> WindowFunction
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 WindowFunction
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