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§
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§impl PartialEq<SelectExpr> for SelectExpr
impl PartialEq<SelectExpr> for SelectExpr
source§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