Enum sqlpop::ast::OneSelect [] [src]

pub enum OneSelect {
    Select {
        distinctness: Option<Distinctness>,
        columns: Vec<ResultColumn>,
        from: Option<FromClause>,
        where_clause: Option<Expr>,
        group_by: Option<GroupBy>,
    },
    Values(Vec<Vec<Expr>>),
}

Variants

Fields of Select

Trait Implementations

impl Clone for OneSelect
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OneSelect
[src]

Formats the value using the given formatter.

impl PartialEq for OneSelect
[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 OneSelect
[src]