Struct rustdb::run::CFromExpression
source · #[non_exhaustive]pub struct CFromExpression {
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 From 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 CFromExpression
impl !Send for CFromExpression
impl !Sync for CFromExpression
impl Unpin for CFromExpression
impl !UnwindSafe for CFromExpression
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more