pub enum WindowCall {
Aggregate(AggregateFunc),
Plain(WindowFunc),
}Expand description
What a window call computes.
Variants§
Aggregate(AggregateFunc)
An aggregate, over the frame.
Plain(WindowFunc)
One of the eleven functions that only exist in a window.
Trait Implementations§
Source§impl Clone for WindowCall
impl Clone for WindowCall
impl Copy for WindowCall
Source§impl Debug for WindowCall
impl Debug for WindowCall
impl Eq for WindowCall
Source§impl PartialEq for WindowCall
impl PartialEq for WindowCall
impl StructuralPartialEq for WindowCall
Auto Trait Implementations§
impl Freeze for WindowCall
impl RefUnwindSafe for WindowCall
impl Send for WindowCall
impl Sync for WindowCall
impl Unpin for WindowCall
impl UnsafeUnpin for WindowCall
impl UnwindSafe for WindowCall
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