Struct pgx_pg_sys::SelectStmt[][src]

#[repr(C)]
pub struct SelectStmt {
Show fields pub type_: NodeTag, pub distinctClause: *mut List, pub intoClause: *mut IntoClause, pub targetList: *mut List, pub fromClause: *mut List, pub whereClause: *mut Node, pub groupClause: *mut List, pub havingClause: *mut Node, pub windowClause: *mut List, pub valuesLists: *mut List, pub sortClause: *mut List, pub limitOffset: *mut Node, pub limitCount: *mut Node, pub limitOption: LimitOption, pub lockingClause: *mut List, pub withClause: *mut WithClause, pub op: SetOperation, pub all: bool, pub larg: *mut SelectStmt, pub rarg: *mut SelectStmt,
}

Fields

type_: NodeTagdistinctClause: *mut ListintoClause: *mut IntoClausetargetList: *mut ListfromClause: *mut ListwhereClause: *mut NodegroupClause: *mut ListhavingClause: *mut NodewindowClause: *mut ListvaluesLists: *mut ListsortClause: *mut ListlimitOffset: *mut NodelimitCount: *mut NodelimitOption: LimitOptionlockingClause: *mut ListwithClause: *mut WithClauseop: SetOperationall: boollarg: *mut SelectStmtrarg: *mut SelectStmt

Trait Implementations

impl Clone for SelectStmt[src]

impl Copy for SelectStmt[src]

impl Debug for SelectStmt[src]

impl Default for SelectStmt[src]

impl Display for SelectStmt[src]

impl PgNode for SelectStmt[src]

type NodeType = SelectStmt

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.