Struct sea_query::query::SelectExpr
source · [−]pub struct SelectExpr {
pub expr: SimpleExpr,
pub alias: Option<DynIden>,
pub window: Option<WindowSelectType>,
}
Expand description
Select expression used in select statement
Fields
expr: SimpleExpr
alias: Option<DynIden>
window: Option<WindowSelectType>
Trait Implementations
sourceimpl Clone for SelectExpr
impl Clone for SelectExpr
sourcefn clone(&self) -> SelectExpr
fn clone(&self) -> SelectExpr
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SelectExpr
impl Debug for SelectExpr
sourceimpl From<Expr> for SelectExpr
impl From<Expr> for SelectExpr
sourceimpl Into<SelectExpr> for SimpleExpr
impl Into<SelectExpr> for SimpleExpr
sourcefn into(self) -> SelectExpr
fn into(self) -> SelectExpr
Converts this type into the (usually inferred) input type.
Auto Trait Implementations
impl !RefUnwindSafe for SelectExpr
impl Send for SelectExpr
impl Sync for SelectExpr
impl Unpin for SelectExpr
impl !UnwindSafe for SelectExpr
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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