pub enum WindowFrame {
Rows {
start: FrameBound,
end: FrameBound,
},
Range {
start: FrameBound,
end: FrameBound,
},
}Expand description
Window frame definition for window functions
Variants§
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 moreSource§impl Debug for WindowFrame
impl Debug for WindowFrame
Source§impl<'de> Deserialize<'de> for WindowFrame
impl<'de> Deserialize<'de> for WindowFrame
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WindowFrame
impl PartialEq for WindowFrame
Source§impl Serialize for WindowFrame
impl Serialize for WindowFrame
impl StructuralPartialEq for WindowFrame
Auto 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