pub enum WindowValue {
Function(WindowFunction),
Expression(Box<dyn Expr>),
}
Variants§
Function(WindowFunction)
Expression(Box<dyn Expr>)
Trait Implementations§
Source§impl Clone for WindowValue
impl Clone for WindowValue
Source§fn clone(&self) -> WindowValue
fn clone(&self) -> WindowValue
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 WindowValue
impl !RefUnwindSafe for WindowValue
impl !Send for WindowValue
impl !Sync for WindowValue
impl Unpin for WindowValue
impl !UnwindSafe for WindowValue
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