pub struct CommonTableExpression {
pub token: Token,
pub name: Identifier,
pub column_names: Vec<Identifier>,
pub query: Box<SelectStatement>,
pub is_recursive: bool,
}Expand description
Common Table Expression
Fields§
§token: Token§name: Identifier§column_names: Vec<Identifier>§query: Box<SelectStatement>§is_recursive: boolTrait Implementations§
Source§impl Clone for CommonTableExpression
impl Clone for CommonTableExpression
Source§fn clone(&self) -> CommonTableExpression
fn clone(&self) -> CommonTableExpression
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CommonTableExpression
impl Debug for CommonTableExpression
Source§impl Display for CommonTableExpression
impl Display for CommonTableExpression
Source§impl PartialEq for CommonTableExpression
impl PartialEq for CommonTableExpression
impl StructuralPartialEq for CommonTableExpression
Auto Trait Implementations§
impl Freeze for CommonTableExpression
impl RefUnwindSafe for CommonTableExpression
impl Send for CommonTableExpression
impl Sync for CommonTableExpression
impl Unpin for CommonTableExpression
impl UnsafeUnpin for CommonTableExpression
impl UnwindSafe for CommonTableExpression
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