Struct sea_orm_migration::prelude::query::SelectExpr
pub struct SelectExpr {
pub expr: SimpleExpr,
pub alias: Option<Arc<dyn Iden + 'static>>,
pub window: Option<WindowSelectType>,
}Expand description
Select expression used in select statement
Fields
expr: SimpleExpralias: Option<Arc<dyn Iden + 'static>>window: Option<WindowSelectType>Trait Implementations
impl Clone for SelectExpr
impl Clone for SelectExpr
fn clone(&self) -> SelectExpr
fn clone(&self) -> SelectExpr
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Debug for SelectExpr
impl Debug for SelectExpr
impl From<Expr> for SelectExpr
impl From<Expr> for SelectExpr
fn from(src: Expr) -> SelectExpr
fn from(src: Expr) -> SelectExpr
Converts to this type from the input type.
impl Into<SelectExpr> for SimpleExpr
impl Into<SelectExpr> for SimpleExpr
fn 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