Enum sqlmo::query::SelectExpression
source · pub enum SelectExpression {
Column {
schema: Option<String>,
table: Option<String>,
column: String,
},
Raw(String),
}
Expand description
Represents a select column value.
Variants§
Trait Implementations§
source§impl Clone for SelectExpression
impl Clone for SelectExpression
source§fn clone(&self) -> SelectExpression
fn clone(&self) -> SelectExpression
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 moreAuto Trait Implementations§
impl RefUnwindSafe for SelectExpression
impl Send for SelectExpression
impl Sync for SelectExpression
impl Unpin for SelectExpression
impl UnwindSafe for SelectExpression
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