pub struct Cte {
pub query: Query,
}Expand description
A common table expression (CTE) within a With clause.
Each CTE wraps a Query whose result set can be referenced as a named
table in the outer query via TableRef::Cte.
§Examples
ⓘ
use toasty_core::stmt::{Cte, Query};
let cte = Cte { query: Query::unit() };Fields§
§query: QueryThe query defining this CTE’s result set.
Trait Implementations§
impl StructuralPartialEq for Cte
Auto Trait Implementations§
impl Freeze for Cte
impl RefUnwindSafe for Cte
impl Send for Cte
impl Sync for Cte
impl Unpin for Cte
impl UnwindSafe for Cte
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