Struct sqlite3_parser::ast::CommonTableExpr
source · pub struct CommonTableExpr {
pub tbl_name: Name,
pub columns: Option<Vec<IndexedColumn>>,
pub materialized: Materialized,
pub select: Select,
}
Fields§
§tbl_name: Name
§columns: Option<Vec<IndexedColumn>>
§materialized: Materialized
§select: Select
Implementations§
source§impl CommonTableExpr
impl CommonTableExpr
pub fn add_cte(
ctes: &mut Vec<CommonTableExpr>,
cte: CommonTableExpr
) -> Result<(), ParserError>
Trait Implementations§
source§impl Clone for CommonTableExpr
impl Clone for CommonTableExpr
source§fn clone(&self) -> CommonTableExpr
fn clone(&self) -> CommonTableExpr
Returns a copy 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 CommonTableExpr
impl Debug for CommonTableExpr
source§impl PartialEq<CommonTableExpr> for CommonTableExpr
impl PartialEq<CommonTableExpr> for CommonTableExpr
source§fn eq(&self, other: &CommonTableExpr) -> bool
fn eq(&self, other: &CommonTableExpr) -> bool
source§impl ToTokens for CommonTableExpr
impl ToTokens for CommonTableExpr
impl Eq for CommonTableExpr
impl StructuralEq for CommonTableExpr
impl StructuralPartialEq for CommonTableExpr
Auto Trait Implementations§
impl RefUnwindSafe for CommonTableExpr
impl Send for CommonTableExpr
impl Sync for CommonTableExpr
impl Unpin for CommonTableExpr
impl UnwindSafe for CommonTableExpr
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.