pub enum SQLFrameBound {
UnboundedPreceding,
Preceding(u64),
CurrentRow,
Following(u64),
UnboundedFollowing,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SQLFrameBound
impl Clone for SQLFrameBound
Source§fn clone(&self) -> SQLFrameBound
fn clone(&self) -> SQLFrameBound
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 moreAuto Trait Implementations§
impl Freeze for SQLFrameBound
impl RefUnwindSafe for SQLFrameBound
impl Send for SQLFrameBound
impl Sync for SQLFrameBound
impl Unpin for SQLFrameBound
impl UnsafeUnpin for SQLFrameBound
impl UnwindSafe for SQLFrameBound
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