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: JoinTypetable: Box<TableRef>on: Option<JoinOn>lateral: boolTrait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for JoinExpr
impl !UnwindSafe for JoinExpr
Blanket Implementations
Mutably borrows from an owned value. Read more