pub enum FetchDirection {
First(Span),
Next(Span),
}Expand description
Direction for FETCH clause (FIRST or NEXT)
Variants§
Trait Implementations§
Source§impl Clone for FetchDirection
impl Clone for FetchDirection
Source§fn clone(&self) -> FetchDirection
fn clone(&self) -> FetchDirection
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 FetchDirection
impl Debug for FetchDirection
Auto Trait Implementations§
impl Freeze for FetchDirection
impl RefUnwindSafe for FetchDirection
impl Send for FetchDirection
impl Sync for FetchDirection
impl Unpin for FetchDirection
impl UnsafeUnpin for FetchDirection
impl UnwindSafe for FetchDirection
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