Struct server::parse::ast::SelectStmt [] [src]

pub struct SelectStmt {
    pub target: Vec<Target>,
    pub tid: Vec<String>,
    pub alias: HashMap<String, String>,
    pub cond: Option<Conditions>,
    pub spec_op: Option<SpecOps>,
    pub order: Vec<Sort>,
    pub limit: Option<Limit>,
}

Information for data selection

Fields

target
tid
alias
cond
spec_op
order
limit

Trait Implementations

Derived Implementations

impl PartialEq for SelectStmt

fn eq(&self, __arg_0: &SelectStmt) -> bool

fn ne(&self, __arg_0: &SelectStmt) -> bool

impl Clone for SelectStmt

fn clone(&self) -> SelectStmt

fn clone_from(&mut self, source: &Self)

impl Debug for SelectStmt

fn fmt(&self, __arg_0: &mut Formatter) -> Result