Struct inquerest::Query [] [src]

pub struct Query {
    pub from: Vec<Operand>,
    pub join: Vec<Join>,
    pub filters: Vec<Filter>,
    pub group_by: Vec<Operand>,
    pub having: Vec<Filter>,
    pub order_by: Vec<Order>,
    pub range: Option<Range>,
    pub equations: Vec<Equation>,
}

Fields

Trait Implementations

impl Debug for Query
[src]

Formats the value using the given formatter.

impl PartialEq for Query
[src]

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

This method tests for !=.

impl Default for Query
[src]

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

impl Clone for Query
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more