pub struct SqlServerCompiler;Expand description
Placeholder compiler marker for the SQL Server dialect.
Implementations§
Source§impl SqlServerCompiler
impl SqlServerCompiler
pub fn compile_query(query: &Query) -> Result<CompiledQuery, OrmError>
pub fn compile_select(query: &SelectQuery) -> Result<CompiledQuery, OrmError>
pub fn compile_insert(query: &InsertQuery) -> Result<CompiledQuery, OrmError>
pub fn compile_update(query: &UpdateQuery) -> Result<CompiledQuery, OrmError>
pub fn compile_delete(query: &DeleteQuery) -> Result<CompiledQuery, OrmError>
pub fn compile_count(query: &CountQuery) -> Result<CompiledQuery, OrmError>
Source§impl SqlServerCompiler
impl SqlServerCompiler
pub fn compile_migration_operations( operations: &[MigrationOperation], ) -> Result<Vec<String>, OrmError>
pub fn compile_migrations_history_table() -> Result<String, OrmError>
Trait Implementations§
Source§impl Clone for SqlServerCompiler
impl Clone for SqlServerCompiler
Source§fn clone(&self) -> SqlServerCompiler
fn clone(&self) -> SqlServerCompiler
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SqlServerCompiler
Source§impl Debug for SqlServerCompiler
impl Debug for SqlServerCompiler
impl Eq for SqlServerCompiler
Source§impl PartialEq for SqlServerCompiler
impl PartialEq for SqlServerCompiler
impl StructuralPartialEq for SqlServerCompiler
Auto Trait Implementations§
impl Freeze for SqlServerCompiler
impl RefUnwindSafe for SqlServerCompiler
impl Send for SqlServerCompiler
impl Sync for SqlServerCompiler
impl Unpin for SqlServerCompiler
impl UnsafeUnpin for SqlServerCompiler
impl UnwindSafe for SqlServerCompiler
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