Enum sqlparser::ast::FetchDirection
source · [−]pub enum FetchDirection {
Count {
limit: Value,
},
Next,
Prior,
First,
Last,
Absolute {
limit: Value,
},
Relative {
limit: Value,
},
All,
Forward {
limit: Option<Value>,
},
ForwardAll,
Backward {
limit: Option<Value>,
},
BackwardAll,
}
Expand description
Specific direction for FETCH statement
Variants
Count
Fields
limit: Value
Next
Prior
First
Last
Absolute
Fields
limit: Value
Relative
Fields
limit: Value
All
Forward
ForwardAll
Backward
BackwardAll
Trait Implementations
sourceimpl Clone for FetchDirection
impl Clone for FetchDirection
sourcefn clone(&self) -> FetchDirection
fn clone(&self) -> FetchDirection
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for FetchDirection
impl Debug for FetchDirection
sourceimpl Display for FetchDirection
impl Display for FetchDirection
sourceimpl Hash for FetchDirection
impl Hash for FetchDirection
sourceimpl PartialEq<FetchDirection> for FetchDirection
impl PartialEq<FetchDirection> for FetchDirection
sourcefn eq(&self, other: &FetchDirection) -> bool
fn eq(&self, other: &FetchDirection) -> bool
impl Eq for FetchDirection
impl StructuralEq for FetchDirection
impl StructuralPartialEq for FetchDirection
Auto Trait Implementations
impl RefUnwindSafe for FetchDirection
impl Send for FetchDirection
impl Sync for FetchDirection
impl Unpin for FetchDirection
impl UnwindSafe for FetchDirection
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more