pub enum SelectColumnImpl<'until_build> {
SQLite(SelectColumnData<'until_build>),
MySQL(SelectColumnData<'until_build>),
Postgres(SelectColumnData<'until_build>),
}
Expand description
Representation of the column selector and implementation of the SelectColumn trait.
Should only be constructed via DBImpl::select_column.
Variants§
SQLite(SelectColumnData<'until_build>)
Available on crate feature
sqlite
only.SQLite representation of a column selector expression.
MySQL(SelectColumnData<'until_build>)
Available on crate feature
mysql
only.MySQL representation of a column selector expression.
Postgres(SelectColumnData<'until_build>)
Available on crate feature
postgres
only.Postgres representation of a column selector expression.
Trait Implementations§
Source§impl<'until_build> Clone for SelectColumnImpl<'until_build>
impl<'until_build> Clone for SelectColumnImpl<'until_build>
Source§fn clone(&self) -> SelectColumnImpl<'until_build>
fn clone(&self) -> SelectColumnImpl<'until_build>
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> Debug for SelectColumnImpl<'until_build>
impl<'until_build> Debug for SelectColumnImpl<'until_build>
Source§impl SelectColumn for SelectColumnImpl<'_>
impl SelectColumn for SelectColumnImpl<'_>
Auto Trait Implementations§
impl<'until_build> Freeze for SelectColumnImpl<'until_build>
impl<'until_build> RefUnwindSafe for SelectColumnImpl<'until_build>
impl<'until_build> Send for SelectColumnImpl<'until_build>
impl<'until_build> Sync for SelectColumnImpl<'until_build>
impl<'until_build> Unpin for SelectColumnImpl<'until_build>
impl<'until_build> UnwindSafe for SelectColumnImpl<'until_build>
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