Enum sqlparser::ast::FunctionArgExpr
source · pub enum FunctionArgExpr {
Expr(Expr),
QualifiedWildcard(ObjectName),
Wildcard,
}Variants§
Expr(Expr)
QualifiedWildcard(ObjectName)
Qualified wildcard, e.g. alias.* or schema.table.*.
Wildcard
An unqualified *
Trait Implementations§
source§impl Clone for FunctionArgExpr
impl Clone for FunctionArgExpr
source§fn clone(&self) -> FunctionArgExpr
fn clone(&self) -> FunctionArgExpr
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 moresource§impl Debug for FunctionArgExpr
impl Debug for FunctionArgExpr
source§impl Display for FunctionArgExpr
impl Display for FunctionArgExpr
source§impl From<WildcardExpr> for FunctionArgExpr
impl From<WildcardExpr> for FunctionArgExpr
source§fn from(wildcard_expr: WildcardExpr) -> Self
fn from(wildcard_expr: WildcardExpr) -> Self
Converts to this type from the input type.