Struct gluesql_core::ast_builder::JoinConstraintNode  
source · pub struct JoinConstraintNode { /* private fields */ }Implementations
sourceimpl JoinConstraintNode
 
impl JoinConstraintNode
pub fn new<N: Into<PrevNode>, T: Into<ExprNode>>(prev_node: N, expr: T) -> Self
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
Trait Implementations
sourceimpl Clone for JoinConstraintNode
 
impl Clone for JoinConstraintNode
sourcefn clone(&self) -> JoinConstraintNode
 
fn clone(&self) -> JoinConstraintNode
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<JoinConstraintNode> for QueryNode
 
impl From<JoinConstraintNode> for QueryNode
sourcefn from(node: JoinConstraintNode) -> Self
 
fn from(node: JoinConstraintNode) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for JoinConstraintNode
impl Send for JoinConstraintNode
impl Sync for JoinConstraintNode
impl Unpin for JoinConstraintNode
impl UnwindSafe for JoinConstraintNode
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