Struct rorm_sql::join_table::JoinTableData
source · pub struct JoinTableData<'until_build, 'post_query> {
pub join_type: JoinType,
pub table_name: &'until_build str,
pub join_alias: &'until_build str,
pub join_condition: &'until_build Condition<'post_query>,
}
Expand description
Data of a JOIN expression.
Fields§
§join_type: JoinType
Type of the join operation
table_name: &'until_build str
Name of the join table
join_alias: &'until_build str
Alias for the join table
join_condition: &'until_build Condition<'post_query>
Condition to apply the join on
Trait Implementations§
source§impl<'until_build, 'post_query> Clone for JoinTableData<'until_build, 'post_query>
impl<'until_build, 'post_query> Clone for JoinTableData<'until_build, 'post_query>
source§fn clone(&self) -> JoinTableData<'until_build, 'post_query>
fn clone(&self) -> JoinTableData<'until_build, 'post_query>
Returns a copy 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 more