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>)
Available on crate feature
sqlite
only.SQLite representation of the create column operation.
MySQL(CreateColumnMySQLData<'until_build, 'post_build>)
Available on crate feature
mysql
only.MySQL representation of the create column operation.
Postgres(CreateColumnPostgresData<'until_build, 'post_build>)
Available on crate feature
postgres
only.Postgres representation of the create column operation.
Trait Implementations§
Source§impl<'post_build> CreateColumn<'post_build> for CreateColumnImpl<'_, 'post_build>
impl<'post_build> CreateColumn<'post_build> for CreateColumnImpl<'_, 'post_build>
Auto Trait Implementations§
impl<'until_build, 'post_build> Freeze for CreateColumnImpl<'until_build, 'post_build>
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>
impl<'until_build, 'post_build> !UnwindSafe for CreateColumnImpl<'until_build, 'post_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