pub enum FrameBound {
UnboundedPreceding,
Preceding(ExprId),
CurrentRow,
Following(ExprId),
UnboundedFollowing,
}Expand description
One end of a window frame.
Variants§
UnboundedPreceding
UNBOUNDED PRECEDING.
Preceding(ExprId)
expr PRECEDING.
CurrentRow
CURRENT ROW.
Following(ExprId)
expr FOLLOWING.
UnboundedFollowing
UNBOUNDED FOLLOWING.
Trait Implementations§
Source§impl Clone for FrameBound
impl Clone for FrameBound
impl Copy for FrameBound
Source§impl Debug for FrameBound
impl Debug for FrameBound
impl Eq for FrameBound
Source§impl PartialEq for FrameBound
impl PartialEq for FrameBound
impl StructuralPartialEq 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