pub struct FetchChain<S> { /* private fields */ }Expand description
A FETCH clause under construction.
Implementations§
Source§impl<S> FetchChain<S>
impl<S> FetchChain<S>
Sourcepub fn with_ties(self) -> FetchChain<S>
pub fn with_ties(self) -> FetchChain<S>
ROWS WITH TIES instead of ROWS ONLY: also return the rows that tie with
the last one under the ORDER BY, which the statement must therefore have.
Trait Implementations§
Source§impl<S: Clone> Clone for FetchChain<S>
impl<S: Clone> Clone for FetchChain<S>
Source§fn clone(&self) -> FetchChain<S>
fn clone(&self) -> FetchChain<S>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<S: Debug> Debug for FetchChain<S>
impl<S: Debug> Debug for FetchChain<S>
Auto Trait Implementations§
impl<S> !RefUnwindSafe for FetchChain<S>
impl<S> !UnwindSafe for FetchChain<S>
impl<S> Freeze for FetchChain<S>
impl<S> Send for FetchChain<S>where
S: Send,
impl<S> Sync for FetchChain<S>where
S: Sync,
impl<S> Unpin for FetchChain<S>where
S: Unpin,
impl<S> UnsafeUnpin for FetchChain<S>
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