Enum datafusion_sql::unparser::Unparsed
source · pub enum Unparsed {
Expr(Expr),
OrderByExpr(OrderByExpr),
}
Expand description
DataFusion’s Exprs can represent either an Expr
or an OrderByExpr
Variants§
Expr(Expr)
OrderByExpr(OrderByExpr)
Implementations§
source§impl Unparsed
impl Unparsed
pub fn into_order_by_expr(self) -> Result<OrderByExpr>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Unparsed
impl RefUnwindSafe for Unparsed
impl Send for Unparsed
impl Sync for Unparsed
impl Unpin for Unparsed
impl UnwindSafe for Unparsed
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