#[non_exhaustive]pub struct Expr {
pub exp: ExprIs,
pub data_type: DataType,
pub is_constant: bool,
pub checked: bool,
pub col: usize,
}Expand description
Scalar Expression (uncompiled).
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.exp: ExprIsExpression kind.
data_type: DataTypeData type.
is_constant: boolDoesn’t depend on FROM clause.
checked: boolHas been type-checked.
col: usizeColumn number.
Implementations§
Auto Trait Implementations§
impl Freeze for Expr
impl !RefUnwindSafe for Expr
impl !Send for Expr
impl !Sync for Expr
impl Unpin for Expr
impl !UnwindSafe for Expr
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