Struct rustdb::run::CSelectExpression
source · [−]#[non_exhaustive]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 (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.colnames: Vec<String>
assigns: Assigns
exps: Vec<CExpPtr<Value>>
from: Option<CTableExpression>
wher: Option<CExpPtr<bool>>
orderby: Vec<CExpPtr<Value>>
desc: Vec<bool>
Auto Trait Implementations
impl !RefUnwindSafe for CSelectExpression
impl !Send for CSelectExpression
impl !Sync for CSelectExpression
impl Unpin for CSelectExpression
impl !UnwindSafe for CSelectExpression
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more