pub enum CteBody {
Query(Box<SelectStmt>),
Insert(Box<InsertStmt>),
Update(Box<UpdateStmt>),
Delete(Box<DeleteStmt>),
Merge(Box<MergeStmt>),
}Expand description
A CTE owns a query or a data-modifying statement. The serialized query arm retains the original SELECT-only catalog representation.
Variants§
Query(Box<SelectStmt>)
Insert(Box<InsertStmt>)
Update(Box<UpdateStmt>)
Delete(Box<DeleteStmt>)
Merge(Box<MergeStmt>)
Implementations§
Source§impl CteBody
impl CteBody
pub fn query(&self) -> Option<&SelectStmt>
pub fn query_mut(&mut self) -> Option<&mut SelectStmt>
pub const fn modifies_data(&self) -> bool
pub fn returning(&self) -> Option<&[Projection]>
pub fn into_statement(self) -> Statement
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CteBody
impl<'de> Deserialize<'de> for CteBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for CteBody
Auto Trait Implementations§
impl Freeze for CteBody
impl RefUnwindSafe for CteBody
impl Send for CteBody
impl Sync for CteBody
impl Unpin for CteBody
impl UnsafeUnpin for CteBody
impl UnwindSafe for CteBody
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more