[−][src]Struct sqlx_core::pool::PoolConnection
Trait Implementations
impl<C> Connection for PoolConnection<C> where
C: Connection + Connect<Connection = C>, [src]
C: Connection + Connect<Connection = C>,
fn close(self) -> BoxFuture<'static, Result<()>>[src]
fn ping(&mut self) -> BoxFuture<Result<()>>[src]
impl<C> Deref for PoolConnection<C> where
C: Connection + Connect<Connection = C>, [src]
C: Connection + Connect<Connection = C>,
impl<C> DerefMut for PoolConnection<C> where
C: Connection + Connect<Connection = C>, [src]
C: Connection + Connect<Connection = C>,
impl<C> Drop for PoolConnection<C> where
C: Connection + Connect<Connection = C>, [src]
C: Connection + Connect<Connection = C>,
impl<C> Executor for PoolConnection<C> where
C: Connection + Connect<Connection = C>, [src]
C: Connection + Connect<Connection = C>,
type Database = <C as Executor>::Database
fn send<'e, 'q: 'e>(
&'e mut self,
commands: &'q str
) -> BoxFuture<'e, Result<()>>[src]
&'e mut self,
commands: &'q str
) -> BoxFuture<'e, Result<()>>
fn execute<'e, 'q: 'e>(
&'e mut self,
query: &'q str,
args: <<C as Executor>::Database as Database>::Arguments
) -> BoxFuture<'e, Result<u64>>[src]
&'e mut self,
query: &'q str,
args: <<C as Executor>::Database as Database>::Arguments
) -> BoxFuture<'e, Result<u64>>
fn fetch<'e, 'q: 'e>(
&'e mut self,
query: &'q str,
args: <<C as Executor>::Database as Database>::Arguments
) -> BoxStream<'e, Result<<<C as Executor>::Database as Database>::Row>>[src]
&'e mut self,
query: &'q str,
args: <<C as Executor>::Database as Database>::Arguments
) -> BoxStream<'e, Result<<<C as Executor>::Database as Database>::Row>>
fn fetch_optional<'e, 'q: 'e>(
&'e mut self,
query: &'q str,
args: <<C as Executor>::Database as Database>::Arguments
) -> BoxFuture<'e, Result<Option<<<C as Executor>::Database as Database>::Row>>>[src]
&'e mut self,
query: &'q str,
args: <<C as Executor>::Database as Database>::Arguments
) -> BoxFuture<'e, Result<Option<<<C as Executor>::Database as Database>::Row>>>
fn describe<'e, 'q: 'e>(
&'e mut self,
query: &'q str
) -> BoxFuture<'e, Result<Describe<Self::Database>>>[src]
&'e mut self,
query: &'q str
) -> BoxFuture<'e, Result<Describe<Self::Database>>>
fn fetch_one<'e, 'q: 'e>(
&'e mut self,
query: &'q str,
args: <Self::Database as Database>::Arguments
) -> BoxFuture<'e, Result<<Self::Database as Database>::Row>>[src]
&'e mut self,
query: &'q str,
args: <Self::Database as Database>::Arguments
) -> BoxFuture<'e, Result<<Self::Database as Database>::Row>>
Auto Trait Implementations
impl<C> !RefUnwindSafe for PoolConnection<C>
impl<C> Send for PoolConnection<C>
impl<C> Sync for PoolConnection<C> where
C: Sync,
C: Sync,
impl<C> Unpin for PoolConnection<C> where
C: Unpin,
C: Unpin,
impl<C> !UnwindSafe for PoolConnection<C>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<'_, T, DB> HasSqlType<&'_ T> for DB where
DB: HasSqlType<T>,
T: ?Sized, [src]
DB: HasSqlType<T>,
T: ?Sized,
impl<T, DB> HasSqlType<Option<T>> for DB where
DB: HasSqlType<T>, [src]
DB: HasSqlType<T>,
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,