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: SelectImplementations§
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
This method tests for 
self and other values to be equal, and is used
by ==.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<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
§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,
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§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,
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.