pub struct SQLWithQuery {
pub ctes: Vec<SQLCommonTableExpression>,
pub final_query: SQLSelectBuilder,
}Fields§
§ctes: Vec<SQLCommonTableExpression>§final_query: SQLSelectBuilderImplementations§
Source§impl SQLWithQuery
impl SQLWithQuery
pub fn new(final_query: SQLSelectBuilder) -> Self
pub fn with(self, cte: SQLCommonTableExpression) -> Self
pub fn build(&self) -> String
Auto Trait Implementations§
impl Freeze for SQLWithQuery
impl RefUnwindSafe for SQLWithQuery
impl Send for SQLWithQuery
impl Sync for SQLWithQuery
impl Unpin for SQLWithQuery
impl UnsafeUnpin for SQLWithQuery
impl UnwindSafe for SQLWithQuery
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