Struct nom_sql::SelectStatement[][src]

pub struct SelectStatement {
    pub tables: Vec<Table>,
    pub distinct: bool,
    pub fields: Vec<FieldDefinitionExpression>,
    pub join: Vec<JoinClause>,
    pub where_clause: Option<ConditionExpression>,
    pub group_by: Option<GroupByClause>,
    pub order: Option<OrderClause>,
    pub limit: Option<LimitClause>,
}

Fields

Trait Implementations

impl Clone for SelectStatement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SelectStatement
[src]

Formats the value using the given formatter. Read more

impl Default for SelectStatement
[src]

Returns the "default value" for a type. Read more

impl Eq for SelectStatement
[src]

impl Hash for SelectStatement
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for SelectStatement
[src]

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

This method tests for !=.

impl Display for SelectStatement
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations