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§
Trait Implementations§
source§impl Clone for FetchDirection
impl Clone for FetchDirection
source§fn clone(&self) -> FetchDirection
fn clone(&self) -> FetchDirection
Returns a copy 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 more