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>)
SQLite representation of a column selector expression.
MySQL(SelectColumnData<'until_build>)
MySQL representation of a column selector expression.
Postgres(SelectColumnData<'until_build>)
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 more