Type Alias diesel::helper_types::InnerJoinQuerySource
source · pub type InnerJoinQuerySource<Left, Right, On = <Left as JoinTo<Right>>::OnClause> = JoinOn<Join<Left, Right, Inner>, On>;
Expand description
A query source representing the inner join between two tables.
For example, for the inner join between three tables that implement JoinTo
:
InnerJoinQuerySource<InnerJoinQuerySource<table1, table2>, table3>
Which conveniently lets you omit the exact join condition.
Aliased Type§
struct InnerJoinQuerySource<Left, Right, On = <Left as JoinTo<Right>>::OnClause> { /* private fields */ }