pub struct MssqlDriver {}
Trait Implementations§
Source§impl Debug for MssqlDriver
impl Debug for MssqlDriver
Source§impl Driver for MssqlDriver
impl Driver for MssqlDriver
fn name(&self) -> &str
Source§fn connect(
&self,
url: &str,
) -> BoxFuture<'_, Result<Box<dyn Connection>, Error>>
fn connect( &self, url: &str, ) -> BoxFuture<'_, Result<Box<dyn Connection>, Error>>
Create a connection to the database. Note that connections are intended to be used
in a single thread since most database connections are not thread-safe
fn connect_opt<'a>( &'a self, opt: &'a dyn ConnectOptions, ) -> BoxFuture<'a, Result<Box<dyn Connection>, Error>>
Source§fn default_option(&self) -> Box<dyn ConnectOptions>
fn default_option(&self) -> Box<dyn ConnectOptions>
make an default option
Source§impl Placeholder for MssqlDriver
impl Placeholder for MssqlDriver
Auto Trait Implementations§
impl Freeze for MssqlDriver
impl RefUnwindSafe for MssqlDriver
impl Send for MssqlDriver
impl Sync for MssqlDriver
impl Unpin for MssqlDriver
impl UnwindSafe for MssqlDriver
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