pub struct Fetch<'a> {
pub fetch_span: Span,
pub direction: Option<FetchDirection>,
pub count: Option<Expression<'a>>,
pub row_span: Span,
}Expand description
Representation of a FETCH clause in VALUES
Fields§
§fetch_span: SpanSpan of the FETCH keyword
direction: Option<FetchDirection>Direction (FIRST/NEXT) if present
count: Option<Expression<'a>>Row count expression if present
row_span: SpanSpan of ROW/ROWS ONLY
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Fetch<'a>
impl<'a> RefUnwindSafe for Fetch<'a>
impl<'a> Send for Fetch<'a>
impl<'a> Sync for Fetch<'a>
impl<'a> Unpin for Fetch<'a>
impl<'a> UnsafeUnpin for Fetch<'a>
impl<'a> UnwindSafe for Fetch<'a>
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