pub enum WindowFrameBound {
UnboundedPreceding,
Preceding(Box<Expr>),
CurrentRow,
Following(Box<Expr>),
UnboundedFollowing,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for WindowFrameBound
impl Clone for WindowFrameBound
Source§fn clone(&self) -> WindowFrameBound
fn clone(&self) -> WindowFrameBound
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 moreSource§impl Debug for WindowFrameBound
impl Debug for WindowFrameBound
Source§impl From<SerialWindowFrameBound> for WindowFrameBound
impl From<SerialWindowFrameBound> for WindowFrameBound
Source§fn from(s: SerialWindowFrameBound) -> WindowFrameBound
fn from(s: SerialWindowFrameBound) -> WindowFrameBound
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WindowFrameBound
impl !RefUnwindSafe for WindowFrameBound
impl !Send for WindowFrameBound
impl !Sync for WindowFrameBound
impl Unpin for WindowFrameBound
impl UnsafeUnpin for WindowFrameBound
impl !UnwindSafe for WindowFrameBound
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