Struct gluesql_core::ast_builder::HashJoinNode  
source · pub struct HashJoinNode { /* private fields */ }Implementations
sourceimpl HashJoinNode
 
impl HashJoinNode
pub fn new<T: Into<ExprNode>, U: Into<ExprNode>>(
    join_node: JoinNode,
    key_expr: T,
    value_expr: U
) -> Self
pub fn hash_filter<T: Into<ExprNode>>(self, expr: T) -> Self
pub fn on<T: Into<ExprNode>>(self, expr: T) -> JoinConstraintNode
pub fn join(self, table_name: &str) -> JoinNode
pub fn join_as(self, table_name: &str, alias: &str) -> JoinNode
pub fn left_join(self, table_name: &str) -> JoinNode
pub fn left_join_as(self, table_name: &str, alias: &str) -> JoinNode
pub fn project<T: Into<SelectItemList>>(self, select_items: T) -> ProjectNode
pub fn group_by<T: Into<ExprList>>(self, expr_list: T) -> GroupByNode
pub fn offset<T: Into<ExprNode>>(self, expr: T) -> OffsetNode
pub fn limit<T: Into<ExprNode>>(self, expr: T) -> LimitNode
pub fn filter<T: Into<ExprNode>>(self, expr: T) -> FilterNode
pub fn order_by<T: Into<OrderByExprList>>(self, order_by_exprs: T) -> OrderByNode
pub fn prebuild_for_constraint(self) -> Result<JoinConstraintData>
Trait Implementations
sourceimpl Clone for HashJoinNode
 
impl Clone for HashJoinNode
sourcefn clone(&self) -> HashJoinNode
 
fn clone(&self) -> HashJoinNode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresourceimpl From<HashJoinNode> for QueryNode
 
impl From<HashJoinNode> for QueryNode
sourcefn from(node: HashJoinNode) -> Self
 
fn from(node: HashJoinNode) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for HashJoinNode
impl Send for HashJoinNode
impl Sync for HashJoinNode
impl Unpin for HashJoinNode
impl UnwindSafe for HashJoinNode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more