pub struct WindowFrame {
pub frame_type: FrameType,
pub start: FrameBound,
pub end: Option<FrameBound>,
}Expand description
Window frame specification.
Fields§
§frame_type: FrameTypeFrame type (ROWS, RANGE, GROUPS).
start: FrameBoundStart bound.
end: Option<FrameBound>End bound (None = CURRENT ROW).
Trait Implementations§
Source§impl Clone for WindowFrame
impl Clone for WindowFrame
Source§fn clone(&self) -> WindowFrame
fn clone(&self) -> WindowFrame
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 WindowFrame
impl RefUnwindSafe for WindowFrame
impl Send for WindowFrame
impl Sync for WindowFrame
impl Unpin for WindowFrame
impl UnwindSafe for WindowFrame
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