Struct sqlpop::ast::Select [] [src]

pub struct Select {
    pub with: Option<With>,
    pub body: SelectBody,
    pub order_by: Option<Vec<SortedColumn>>,
    pub limit: Option<Limit>,
}

Fields

Trait Implementations

impl Clone for Select
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Select
[src]

Formats the value using the given formatter.

impl PartialEq for Select
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Select
[src]