pub enum SubQueryStatement {
SelectStatement(SelectStatement),
InsertStatement(InsertStatement),
UpdateStatement(UpdateStatement),
DeleteStatement(DeleteStatement),
WithStatement(WithQuery),
}
Variants§
SelectStatement(SelectStatement)
InsertStatement(InsertStatement)
UpdateStatement(UpdateStatement)
DeleteStatement(DeleteStatement)
WithStatement(WithQuery)
Implementations§
Source§impl SubQueryStatement
impl SubQueryStatement
pub(crate) fn prepare_statement( &self, query_builder: &dyn QueryBuilder, sql: &mut dyn SqlWriter, )
Trait Implementations§
Source§impl Clone for SubQueryStatement
impl Clone for SubQueryStatement
Source§fn clone(&self) -> SubQueryStatement
fn clone(&self) -> SubQueryStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SubQueryStatement
impl Debug for SubQueryStatement
Source§impl From<DeleteStatement> for SubQueryStatement
impl From<DeleteStatement> for SubQueryStatement
Source§fn from(s: DeleteStatement) -> Self
fn from(s: DeleteStatement) -> Self
Converts to this type from the input type.
Source§impl From<InsertStatement> for SubQueryStatement
impl From<InsertStatement> for SubQueryStatement
Source§fn from(s: InsertStatement) -> Self
fn from(s: InsertStatement) -> Self
Converts to this type from the input type.
Source§impl From<SelectStatement> for SubQueryStatement
impl From<SelectStatement> for SubQueryStatement
Source§fn from(s: SelectStatement) -> Self
fn from(s: SelectStatement) -> Self
Converts to this type from the input type.
Source§impl From<UpdateStatement> for SubQueryStatement
impl From<UpdateStatement> for SubQueryStatement
Source§fn from(s: UpdateStatement) -> Self
fn from(s: UpdateStatement) -> Self
Converts to this type from the input type.
Source§impl From<WithQuery> for SubQueryStatement
impl From<WithQuery> for SubQueryStatement
Source§impl PartialEq for SubQueryStatement
impl PartialEq for SubQueryStatement
impl StructuralPartialEq for SubQueryStatement
Auto Trait Implementations§
impl Freeze for SubQueryStatement
impl RefUnwindSafe for SubQueryStatement
impl Send for SubQueryStatement
impl Sync for SubQueryStatement
impl Unpin for SubQueryStatement
impl UnwindSafe for SubQueryStatement
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