Enum rorm_sql::insert::InsertImpl
source · pub enum InsertImpl<'until_build, 'post_build> {
SQLite(InsertData<'until_build, 'post_build>),
MySQL(InsertData<'until_build, 'post_build>),
Postgres(InsertData<'until_build, 'post_build>),
}
Expand description
Implementation of the Insert trait for the different implementations.
Should only be constructed via DBImpl::insert.
Variants§
SQLite(InsertData<'until_build, 'post_build>)
SQLite representation of the INSERT operation.
MySQL(InsertData<'until_build, 'post_build>)
MySQL representation of the INSERT operation.
Postgres(InsertData<'until_build, 'post_build>)
Postgres representation of the INSERT operation.