[][src]Struct postgres_parser::nodes::SelectStmt

pub struct SelectStmt {
    pub distinctClause: Option<Vec<Node>>,
    pub intoClause: Option<Box<IntoClause>>,
    pub targetList: Option<Vec<Node>>,
    pub fromClause: Option<Vec<Node>>,
    pub whereClause: Option<Box<Node>>,
    pub groupClause: Option<Vec<Node>>,
    pub havingClause: Option<Box<Node>>,
    pub windowClause: Option<Vec<Node>>,
    pub valuesLists: Option<Vec<Node>>,
    pub sortClause: Option<Vec<Node>>,
    pub limitOffset: Option<Box<Node>>,
    pub limitCount: Option<Box<Node>>,
    pub lockingClause: Option<Vec<Node>>,
    pub withClause: Option<Box<WithClause>>,
    pub op: SetOperation,
    pub all: bool,
    pub larg: Option<Box<SelectStmt>>,
    pub rarg: Option<Box<SelectStmt>>,
}

Fields

distinctClause: Option<Vec<Node>>intoClause: Option<Box<IntoClause>>targetList: Option<Vec<Node>>fromClause: Option<Vec<Node>>whereClause: Option<Box<Node>>groupClause: Option<Vec<Node>>havingClause: Option<Box<Node>>windowClause: Option<Vec<Node>>valuesLists: Option<Vec<Node>>sortClause: Option<Vec<Node>>limitOffset: Option<Box<Node>>limitCount: Option<Box<Node>>lockingClause: Option<Vec<Node>>withClause: Option<Box<WithClause>>op: SetOperationall: boollarg: Option<Box<SelectStmt>>rarg: Option<Box<SelectStmt>>

Trait Implementations

impl Debug for SelectStmt[src]

impl<'de> Deserialize<'de> for SelectStmt[src]

impl Eq for SelectStmt[src]

impl PartialEq<SelectStmt> for SelectStmt[src]

impl Serialize for SelectStmt[src]

impl StructuralEq for SelectStmt[src]

impl StructuralPartialEq for SelectStmt[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.