pub enum SelectItemQualifiedWildcardKind {
ObjectName(ObjectName),
Expr(Expr),
}Expand description
Represents an expression behind a wildcard expansion in a projection. `SELECT T.* FROM T;
Variants§
ObjectName(ObjectName)
Expression is an object name.
e.g. alias.* or even schema.table.*
Expr(Expr)
Select star on an arbitrary expression.
e.g. STRUCT<STRING>('foo').*
Trait Implementations§
Source§impl Clone for SelectItemQualifiedWildcardKind
impl Clone for SelectItemQualifiedWildcardKind
Source§fn clone(&self) -> SelectItemQualifiedWildcardKind
fn clone(&self) -> SelectItemQualifiedWildcardKind
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 moreSource§impl<'de> Deserialize<'de> for SelectItemQualifiedWildcardKind
impl<'de> Deserialize<'de> for SelectItemQualifiedWildcardKind
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
Source§impl Ord for SelectItemQualifiedWildcardKind
impl Ord for SelectItemQualifiedWildcardKind
Source§fn cmp(&self, other: &SelectItemQualifiedWildcardKind) -> Ordering
fn cmp(&self, other: &SelectItemQualifiedWildcardKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SelectItemQualifiedWildcardKind
impl PartialEq for SelectItemQualifiedWildcardKind
Source§fn eq(&self, other: &SelectItemQualifiedWildcardKind) -> bool
fn eq(&self, other: &SelectItemQualifiedWildcardKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SelectItemQualifiedWildcardKind
impl PartialOrd for SelectItemQualifiedWildcardKind
Source§impl VisitMut for SelectItemQualifiedWildcardKind
impl VisitMut for SelectItemQualifiedWildcardKind
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for SelectItemQualifiedWildcardKind
impl StructuralPartialEq for SelectItemQualifiedWildcardKind
Auto Trait Implementations§
impl Freeze for SelectItemQualifiedWildcardKind
impl RefUnwindSafe for SelectItemQualifiedWildcardKind
impl Send for SelectItemQualifiedWildcardKind
impl Sync for SelectItemQualifiedWildcardKind
impl Unpin for SelectItemQualifiedWildcardKind
impl UnwindSafe for SelectItemQualifiedWildcardKind
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