pub struct OracleDriver {}
Implementations§
Source§impl OracleDriver
impl OracleDriver
pub fn pub_exchange(&self, sql: &str) -> String
Trait Implementations§
Source§impl Debug for OracleDriver
impl Debug for OracleDriver
Source§impl Driver for OracleDriver
impl Driver for OracleDriver
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<'_, 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 OracleDriver
impl Placeholder for OracleDriver
Auto Trait Implementations§
impl Freeze for OracleDriver
impl RefUnwindSafe for OracleDriver
impl Send for OracleDriver
impl Sync for OracleDriver
impl Unpin for OracleDriver
impl UnwindSafe for OracleDriver
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