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>)
Available on crate feature
sqlite
only.SQLite representation of a JOIN expression.
MySQL(JoinTableData<'until_build, 'post_query>)
Available on crate feature
mysql
only.MySQL representation of a JOIN expression.
Postgres(JoinTableData<'until_build, 'post_query>)
Available on crate feature
postgres
only.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 moreSource§impl<'until_build, 'post_query> Debug for JoinTableImpl<'until_build, 'post_query>
impl<'until_build, 'post_query> Debug for JoinTableImpl<'until_build, 'post_query>
Auto Trait Implementations§
impl<'until_build, 'post_query> Freeze for JoinTableImpl<'until_build, 'post_query>
impl<'until_build, 'post_query> RefUnwindSafe for JoinTableImpl<'until_build, 'post_query>
impl<'until_build, 'post_query> Send for JoinTableImpl<'until_build, 'post_query>
impl<'until_build, 'post_query> Sync for JoinTableImpl<'until_build, 'post_query>
impl<'until_build, 'post_query> Unpin for JoinTableImpl<'until_build, 'post_query>
impl<'until_build, 'post_query> UnwindSafe for JoinTableImpl<'until_build, 'post_query>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more