Enum rorm_sql::create_column::CreateColumnImpl
source · pub enum CreateColumnImpl<'until_build, 'post_build> {
SQLite(CreateColumnSQLiteData<'until_build, 'post_build>),
MySQL(CreateColumnMySQLData<'until_build, 'post_build>),
Postgres(CreateColumnPostgresData<'until_build, 'post_build>),
}
Expand description
Representation of the different implementations of the CreateColumn trait.
Should only be constructed via crate::DBImpl::create_column.
Variants
SQLite(CreateColumnSQLiteData<'until_build, 'post_build>)
SQLite representation of the create column operation.
MySQL(CreateColumnMySQLData<'until_build, 'post_build>)
MySQL representation of the create column operation.
Postgres(CreateColumnPostgresData<'until_build, 'post_build>)
Postgres representation of the create column operation.
Trait Implementations
sourceimpl<'until_build, 'post_build> CreateColumn<'post_build> for CreateColumnImpl<'until_build, 'post_build>
impl<'until_build, 'post_build> CreateColumn<'post_build> for CreateColumnImpl<'until_build, 'post_build>
Auto Trait Implementations
impl<'until_build, 'post_build> RefUnwindSafe for CreateColumnImpl<'until_build, 'post_build>
impl<'until_build, 'post_build> Send for CreateColumnImpl<'until_build, 'post_build>
impl<'until_build, 'post_build> Sync for CreateColumnImpl<'until_build, 'post_build>
impl<'until_build, 'post_build> Unpin for CreateColumnImpl<'until_build, 'post_build>where
'post_build: 'until_build,
impl<'until_build, 'post_build> !UnwindSafe for CreateColumnImpl<'until_build, 'post_build>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more