pub enum SelectItem {
Expr {
expr: Expr,
label: String,
},
QualifiedWildcard(String),
Wildcard,
}Variants§
Expr
An expression
QualifiedWildcard(String)
alias.* or even schema.table.*
Wildcard
An unqualified *
Trait Implementations§
Source§impl Clone for SelectItem
impl Clone for SelectItem
Source§fn clone(&self) -> SelectItem
fn clone(&self) -> SelectItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SelectItem
impl Debug for SelectItem
Source§impl<'de> Deserialize<'de> for SelectItem
impl<'de> Deserialize<'de> for SelectItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SelectItem
Source§impl From<SelectItem> for SelectItemPlan
impl From<SelectItem> for SelectItemPlan
Source§fn from(select_item: SelectItem) -> Self
fn from(select_item: SelectItem) -> Self
Converts to this type from the input type.
Source§impl From<SelectItem> for SelectItemNode<'_>
impl From<SelectItem> for SelectItemNode<'_>
Source§fn from(select_item: SelectItem) -> Self
fn from(select_item: SelectItem) -> Self
Converts to this type from the input type.
Source§impl Hash for SelectItem
impl Hash for SelectItem
Source§impl PartialEq for SelectItem
impl PartialEq for SelectItem
Source§impl Serialize for SelectItem
impl Serialize for SelectItem
impl StructuralPartialEq for SelectItem
Source§impl ToSqlUnquoted for SelectItem
impl ToSqlUnquoted for SelectItem
fn to_sql_unquoted(&self) -> String
Auto Trait Implementations§
impl Freeze for SelectItem
impl RefUnwindSafe for SelectItem
impl Send for SelectItem
impl Sync for SelectItem
impl Unpin for SelectItem
impl UnsafeUnpin for SelectItem
impl UnwindSafe for SelectItem
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more