pub enum WildcardExpr {
Expr(Expr),
QualifiedWildcard(ObjectName),
Wildcard,
}Expand description
Represents a wildcard expression used in SELECT lists.
Variants§
Expr(Expr)
A specific expression used instead of a wildcard.
QualifiedWildcard(ObjectName)
A qualified wildcard like table.*.
Wildcard
An unqualified * wildcard.
Auto Trait Implementations§
impl Freeze for WildcardExpr
impl RefUnwindSafe for WildcardExpr
impl Send for WildcardExpr
impl Sync for WildcardExpr
impl Unpin for WildcardExpr
impl UnwindSafe for WildcardExpr
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
where 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