Struct sea_orm_migration::prelude::SelectExpr
pub struct SelectExpr {
pub expr: SimpleExpr,
pub alias: Option<SeaRc<dyn Iden>>,
pub window: Option<WindowSelectType>,
}Expand description
Select expression used in select statement
Fields§
§expr: SimpleExpr§alias: Option<SeaRc<dyn Iden>>§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 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for SelectExpr
impl Debug for SelectExpr
§impl<T> From<T> for SelectExprwhere
T: Into<SimpleExpr>,
impl<T> From<T> for SelectExprwhere T: Into<SimpleExpr>,
§fn from(expr: T) -> SelectExpr
fn from(expr: T) -> SelectExpr
Converts to this type from the input type.
§impl PartialEq for SelectExpr
impl PartialEq for SelectExpr
§fn eq(&self, other: &SelectExpr) -> bool
fn eq(&self, other: &SelectExpr) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SelectExpr
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§
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