pub struct ProjectionExpr {
pub expr: PlanExpression,
pub alias: Option<String>,
}Expand description
A projection expression with optional alias.
Fields§
§expr: PlanExpression§alias: Option<String>Trait Implementations§
Source§impl Clone for ProjectionExpr
impl Clone for ProjectionExpr
Source§fn clone(&self) -> ProjectionExpr
fn clone(&self) -> ProjectionExpr
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ProjectionExpr
impl RefUnwindSafe for ProjectionExpr
impl Send for ProjectionExpr
impl Sync for ProjectionExpr
impl Unpin for ProjectionExpr
impl UnsafeUnpin for ProjectionExpr
impl UnwindSafe for ProjectionExpr
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