pub struct SqlJoin<Ast> {
pub expr: RelExpr<Ast>,
pub alias: SqlIdent,
pub on: Option<SqlExpr>,
}Expand description
An inner join in a FROM clause
Fields§
§expr: RelExpr<Ast>§alias: SqlIdent§on: Option<SqlExpr>Trait Implementations§
Auto Trait Implementations§
impl<Ast> Freeze for SqlJoin<Ast>
impl<Ast> RefUnwindSafe for SqlJoin<Ast>where
Ast: RefUnwindSafe,
impl<Ast> Send for SqlJoin<Ast>where
Ast: Send,
impl<Ast> Sync for SqlJoin<Ast>where
Ast: Sync,
impl<Ast> Unpin for SqlJoin<Ast>
impl<Ast> UnwindSafe for SqlJoin<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