pub struct FrameRef<'a> {
pub frame_type: FrameTypeRef,
pub start: FrameBoundRef<'a>,
pub end: Option<FrameBoundRef<'a>>,
}Expand description
A frame clause for window specifications.
Fields§
§frame_type: FrameTypeRefFrame type (ROWS, RANGE, GROUPS).
start: FrameBoundRef<'a>Start bound.
end: Option<FrameBoundRef<'a>>End bound.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FrameRef<'a>
impl<'a> RefUnwindSafe for FrameRef<'a>
impl<'a> Send for FrameRef<'a>
impl<'a> Sync for FrameRef<'a>
impl<'a> Unpin for FrameRef<'a>
impl<'a> UnwindSafe for FrameRef<'a>
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