pub struct SelectExpr {
pub expr: Expr,
pub alias: Option<DynIden>,
pub window: Option<WindowSelectType>,
}
Expand description
Select expression used in select statement
Fields§
§expr: Expr
§alias: Option<DynIden>
§window: Option<WindowSelectType>
Trait Implementations§
Source§impl Clone for SelectExpr
impl Clone for SelectExpr
Source§fn clone(&self) -> SelectExpr
fn clone(&self) -> SelectExpr
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SelectExpr
impl Debug for SelectExpr
Source§impl<T> From<T> for SelectExpr
impl<T> From<T> for SelectExpr
Source§impl PartialEq for SelectExpr
impl PartialEq for SelectExpr
impl StructuralPartialEq for SelectExpr
Auto Trait Implementations§
impl Freeze for SelectExpr
impl RefUnwindSafe for SelectExpr
impl Send for SelectExpr
impl Sync for SelectExpr
impl Unpin for SelectExpr
impl UnwindSafe for SelectExpr
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