Enum rorm_sql::join_table::JoinTableImpl
source · pub enum JoinTableImpl<'until_build, 'post_query> {
SQLite(JoinTableData<'until_build, 'post_query>),
MySQL(JoinTableData<'until_build, 'post_query>),
Postgres(JoinTableData<'until_build, 'post_query>),
}
Expand description
Representation of the JOIN expression
Should only be constructed via DBImpl::join_table.
Variants§
SQLite(JoinTableData<'until_build, 'post_query>)
SQLite representation of a JOIN expression.
MySQL(JoinTableData<'until_build, 'post_query>)
MySQL representation of a JOIN expression.
Postgres(JoinTableData<'until_build, 'post_query>)
Postgres representation of a JOIN expression.
Trait Implementations§
source§impl<'until_build, 'post_query> Clone for JoinTableImpl<'until_build, 'post_query>
impl<'until_build, 'post_query> Clone for JoinTableImpl<'until_build, 'post_query>
source§fn clone(&self) -> JoinTableImpl<'until_build, 'post_query>
fn clone(&self) -> JoinTableImpl<'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