Struct rustdb::run::CSelectExpression[][src]

pub struct CSelectExpression {
    pub colnames: Vec<String>,
    pub assigns: Assigns,
    pub exps: Vec<CExpPtr<Value>>,
    pub from: Option<CTableExpression>,
    pub wher: Option<CExpPtr<bool>>,
    pub orderby: Vec<CExpPtr<Value>>,
    pub desc: Vec<bool>,
}
Expand description

Compiled Select Expression.

Fields

colnames: Vec<String>assigns: Assignsexps: Vec<CExpPtr<Value>>from: Option<CTableExpression>wher: Option<CExpPtr<bool>>orderby: Vec<CExpPtr<Value>>desc: Vec<bool>

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.