Struct pg_query::ast::SelectStmt[][src]

pub struct SelectStmt {
Show fields pub distinct_clause: Option<Vec<Node>>, pub into_clause: Option<Box<IntoClause>>, pub target_list: Option<Vec<Node>>, pub from_clause: Option<Vec<Node>>, pub where_clause: Option<Box<Node>>, pub group_clause: Option<Vec<Node>>, pub having_clause: Option<Box<Node>>, pub window_clause: Option<Vec<Node>>, pub values_lists: Option<Vec<Node>>, pub sort_clause: Option<Vec<Node>>, pub limit_offset: Option<Box<Node>>, pub limit_count: Option<Box<Node>>, pub limit_option: Box<LimitOption>, pub locking_clause: Option<Vec<Node>>, pub with_clause: Option<Box<WithClause>>, pub op: Box<SetOperation>, pub all: bool, pub larg: Option<Box<SelectStmt>>, pub rarg: Option<Box<SelectStmt>>,
}

Fields

distinct_clause: Option<Vec<Node>>into_clause: Option<Box<IntoClause>>target_list: Option<Vec<Node>>from_clause: Option<Vec<Node>>where_clause: Option<Box<Node>>group_clause: Option<Vec<Node>>having_clause: Option<Box<Node>>window_clause: Option<Vec<Node>>values_lists: Option<Vec<Node>>sort_clause: Option<Vec<Node>>limit_offset: Option<Box<Node>>limit_count: Option<Box<Node>>limit_option: Box<LimitOption>locking_clause: Option<Vec<Node>>with_clause: Option<Box<WithClause>>op: Box<SetOperation>all: boollarg: Option<Box<SelectStmt>>rarg: Option<Box<SelectStmt>>

Trait Implementations

impl Debug for SelectStmt[src]

impl<'de> Deserialize<'de> 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.