pub enum FrameBound {
UnboundedPreceding,
Preceding(u64),
CurrentRow,
Following(u64),
UnboundedFollowing,
}Expand description
Specifies a bound for a window frame (ROWS/RANGE BETWEEN).
Variants§
UnboundedPreceding
UNBOUNDED PRECEDING
Preceding(u64)
N PRECEDING
CurrentRow
CURRENT ROW
Following(u64)
N FOLLOWING
UnboundedFollowing
UNBOUNDED FOLLOWING
Trait Implementations§
Source§impl Clone for FrameBound
impl Clone for FrameBound
Source§fn clone(&self) -> FrameBound
fn clone(&self) -> FrameBound
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 moreimpl Copy for FrameBound
Auto Trait Implementations§
impl Freeze for FrameBound
impl RefUnwindSafe for FrameBound
impl Send for FrameBound
impl Sync for FrameBound
impl Unpin for FrameBound
impl UnsafeUnpin for FrameBound
impl UnwindSafe for FrameBound
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