pub enum FrameType {
Range,
Rows,
Groups,
}Expand description
Frame type for window functions.
Defines how the frame is calculated:
Range: Frame based on value rangeRows: Frame based on physical row positionsGroups: Frame based on peer groups (PostgreSQL only)
Variants§
Range
RANGE frame type.
Rows
ROWS frame type.
Groups
GROUPS frame type (PostgreSQL only).
Using this with MySQL or SQLite will cause a panic during SQL generation.
Trait Implementations§
impl Eq for FrameType
impl StructuralPartialEq for FrameType
Auto Trait Implementations§
impl Freeze for FrameType
impl RefUnwindSafe for FrameType
impl Send for FrameType
impl Sync for FrameType
impl Unpin for FrameType
impl UnsafeUnpin for FrameType
impl UnwindSafe for FrameType
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