usecrate::expr::expr::Scalar;usecrate::Expr;/// Create an expression that refers to a column by name (case-sensitive).
pubfncol(_name:&str)-> Expr{Expr::Column(_name.to_string())}/// Create a literal expression from a scalar value.
pubfnlit<T>(value: T)-> Expr
where
T:Into<Scalar>,
{Expr::Literal(value.into())}/// Create a wildcard expression that expands to all columns in projections.
pubfnall()-> Expr{Expr::Wildcard
}