pub struct CteChain { /* private fields */ }Expand description
A common table expression under construction.
with("recent", body) is already a complete mod; the one method adds the only
optional part MySQL’s with_query has.
MySQL’s production is
cte_name [(col_name [, col_name] ...)] AS (subquery) (15.2.20) — there is no
MATERIALIZED, no SEARCH and no CYCLE, so this chain has none of the
methods PostgreSQL’s does.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for CteChain
impl !UnwindSafe for CteChain
impl Freeze for CteChain
impl Send for CteChain
impl Sync for CteChain
impl Unpin for CteChain
impl UnsafeUnpin for CteChain
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