pub enum FrameBoundRef<'a> {
UnboundedPreceding,
Preceding(u32),
CurrentRow,
Following(u32),
UnboundedFollowing,
Expr(Cow<'a, str>),
}Expand description
Frame bound specification.
Variants§
UnboundedPreceding
Preceding(u32)
CurrentRow
Following(u32)
UnboundedFollowing
Expr(Cow<'a, str>)
Expression-based bound (may be borrowed or owned).
Trait Implementations§
Source§impl<'a> Clone for FrameBoundRef<'a>
impl<'a> Clone for FrameBoundRef<'a>
Source§fn clone(&self) -> FrameBoundRef<'a>
fn clone(&self) -> FrameBoundRef<'a>
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<'a> Debug for FrameBoundRef<'a>
impl<'a> Debug for FrameBoundRef<'a>
Source§impl<'a> PartialEq for FrameBoundRef<'a>
impl<'a> PartialEq for FrameBoundRef<'a>
impl<'a> StructuralPartialEq for FrameBoundRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for FrameBoundRef<'a>
impl<'a> RefUnwindSafe for FrameBoundRef<'a>
impl<'a> Send for FrameBoundRef<'a>
impl<'a> Sync for FrameBoundRef<'a>
impl<'a> Unpin for FrameBoundRef<'a>
impl<'a> UnwindSafe for FrameBoundRef<'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