pub struct JoinExpr {
pub join: JoinType,
pub table: Box<TableRef>,
pub on: Option<JoinOn>,
pub lateral: bool,
}
Expand description
Join expression used in select statement
Fields§
§join: JoinType
§table: Box<TableRef>
§on: Option<JoinOn>
§lateral: bool
Trait Implementations§
source§impl PartialEq<JoinExpr> for JoinExpr
impl PartialEq<JoinExpr> for JoinExpr
impl StructuralPartialEq for JoinExpr
Auto Trait Implementations§
impl !RefUnwindSafe for JoinExpr
impl Send for JoinExpr
impl Sync for JoinExpr
impl Unpin for JoinExpr
impl !UnwindSafe for JoinExpr
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