pub struct Cte {
pub alias: TableAlias,
pub query: Box<Query>,
pub from: Option<Ident>,
pub materialized: Option<CteAsMaterialized>,
pub closing_paren_token: AttachedToken,
}
Expand description
A single CTE (used after WITH
): <alias> [(col1, col2, ...)] AS <materialized> ( <query> )
The names in the column list before AS
, when specified, replace the names
of the columns returned by the query. The parser does not validate that the
number of columns in the query matches the number of columns in the query.
Fields§
§alias: TableAlias
§query: Box<Query>
§from: Option<Ident>
§materialized: Option<CteAsMaterialized>
§closing_paren_token: AttachedToken
Token for the closing parenthesis
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cte
impl<'de> Deserialize<'de> for Cte
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
Source§impl Ord for Cte
impl Ord for Cte
Source§impl PartialOrd for Cte
impl PartialOrd for Cte
Source§impl VisitMut for Cte
impl VisitMut for Cte
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for Cte
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