pub enum RelExpr<Ast> {
Var(SqlIdent),
Ast(Box<Ast>),
}Expand description
A RelExpr is an expression that produces a relation
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<Ast> Freeze for RelExpr<Ast>
impl<Ast> RefUnwindSafe for RelExpr<Ast>where
Ast: RefUnwindSafe,
impl<Ast> Send for RelExpr<Ast>where
Ast: Send,
impl<Ast> Sync for RelExpr<Ast>where
Ast: Sync,
impl<Ast> Unpin for RelExpr<Ast>
impl<Ast> UnwindSafe for RelExpr<Ast>where
Ast: UnwindSafe,
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