pub struct SelectExpr {
pub expr: SimpleExpr,
pub alias: Option<Arc<dyn Iden>>,
pub window: Option<WindowSelectType>,
}Available on crate feature
migration only.Expand description
Select expression used in select statement
Fields§
§expr: SimpleExpr§alias: Option<Arc<dyn Iden>>§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 copy 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 SelectExprwhere
T: Into<SimpleExpr>,
impl<T> From<T> for SelectExprwhere
T: Into<SimpleExpr>,
Source§fn from(expr: T) -> SelectExpr
fn from(expr: T) -> SelectExpr
Converts to this type from the input type.
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