pub enum SqlFrom<Ast> {
Expr(RelExpr<Ast>, Option<SqlIdent>),
Join(RelExpr<Ast>, SqlIdent, Vec<SqlJoin<Ast>>),
}Expand description
The FROM clause is either a RelExpr or a JOIN
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<Ast> Freeze for SqlFrom<Ast>
impl<Ast> RefUnwindSafe for SqlFrom<Ast>where
Ast: RefUnwindSafe,
impl<Ast> Send for SqlFrom<Ast>where
Ast: Send,
impl<Ast> Sync for SqlFrom<Ast>where
Ast: Sync,
impl<Ast> Unpin for SqlFrom<Ast>
impl<Ast> UnwindSafe for SqlFrom<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