pub struct Fetch {
pub with_ties: bool,
pub percent: bool,
pub quantity: Option<Expr>,
}Expand description
FETCH clause options.
Fields§
§with_ties: boolWITH TIES option is present.
percent: boolPERCENT modifier is present.
quantity: Option<Expr>Optional quantity expression (e.g. FETCH FIRST 10 ROWS).
Trait Implementations§
Source§impl Ord for Fetch
impl Ord for Fetch
Source§impl PartialOrd for Fetch
impl PartialOrd for Fetch
Source§impl VisitMut for Fetch
impl VisitMut for Fetch
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for Fetch
impl StructuralPartialEq for Fetch
Auto Trait Implementations§
impl Freeze for Fetch
impl RefUnwindSafe for Fetch
impl Send for Fetch
impl Sync for Fetch
impl Unpin for Fetch
impl UnsafeUnpin for Fetch
impl UnwindSafe for Fetch
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