Enum rorm_sql::select_column::SelectColumnImpl
source · 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<'until_build> SelectColumn for SelectColumnImpl<'until_build>
impl<'until_build> SelectColumn for SelectColumnImpl<'until_build>
Auto Trait Implementations§
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