pub struct JoinClause {
pub join_type: JoinType,
pub table: TableRef,
pub on: Option<Expr>,
pub using: Vec<String>,
}Expand description
A JOIN clause.
Fields§
§join_type: JoinTypeThe type of join.
table: TableRefThe table to join.
on: Option<Expr>The join condition (for non-CROSS joins).
using: Vec<String>USING columns (alternative to ON).
Trait Implementations§
Source§impl Clone for JoinClause
impl Clone for JoinClause
Source§fn clone(&self) -> JoinClause
fn clone(&self) -> JoinClause
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JoinClause
impl Debug for JoinClause
Source§impl Display for JoinClause
impl Display for JoinClause
Source§impl PartialEq for JoinClause
impl PartialEq for JoinClause
impl StructuralPartialEq for JoinClause
Auto Trait Implementations§
impl Freeze for JoinClause
impl RefUnwindSafe for JoinClause
impl Send for JoinClause
impl Sync for JoinClause
impl Unpin for JoinClause
impl UnwindSafe for JoinClause
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