[][src]Struct sqlx::Pool

pub struct Pool<C>(_);

A pool of database connections.

Methods

impl<C> Pool<C> where
    C: Connection + Connect<Connection = C>, 
[src]

pub async fn new(url: &'_ str) -> Result<Pool<C>, Error>[src]

Creates a connection pool with the default configuration.

The connection URL syntax is documented on the connection type for the respective database you're connecting to:

pub fn builder() -> Builder<C>[src]

Returns a [Builder] to configure a new connection pool.

pub async fn acquire(&'_ self) -> Result<PoolConnection<C>, Error>[src]

Retrieves a connection from the pool.

Waits for at most the configured connection timeout before returning an error.

pub fn try_acquire(&self) -> Option<PoolConnection<C>>[src]

Attempts to retrieve a connection from the pool if there is one available.

Returns None immediately if there are no idle connections available in the pool.

pub async fn begin(&'_ self) -> Result<Transaction<PoolConnection<C>>, Error>[src]

Retrieves a new connection and immediately begins a new transaction.

pub async fn close(&'_ self)[src]

Ends the use of a connection pool. Prevents any new connections and will close all active connections when they are returned to the pool.

Does not resolve until all connections are closed.

pub fn is_closed(&self) -> bool[src]

Returns true if .close() has been called on the pool, false otherwise.

pub fn size(&self) -> u32[src]

Returns the number of connections currently being managed by the pool.

pub fn idle(&self) -> usize[src]

Returns the number of idle connections.

pub fn max_size(&self) -> u32[src]

Returns the configured maximum pool size.

pub fn connect_timeout(&self) -> Duration[src]

Returns the maximum time spent acquiring a new connection before an error is returned.

pub fn min_size(&self) -> u32[src]

Returns the configured minimum idle connection count.

pub fn max_lifetime(&self) -> Option<Duration>[src]

Returns the configured maximum connection lifetime.

pub fn idle_timeout(&self) -> Option<Duration>[src]

Returns the configured idle connection timeout.

Trait Implementations

impl<C> Clone for Pool<C>[src]

Returns a new Pool tied to the same shared connection pool.

impl<C> Debug for Pool<C> where
    C: Connection + Connect<Connection = C>, 
[src]

impl<'_, C> Executor for &'_ Pool<C> where
    C: Connection + Connect<Connection = C>, 
[src]

type Database = <C as Executor>::Database

impl<C> Executor for Pool<C> where
    C: Connection + Connect<Connection = C>, 
[src]

type Database = <C as Executor>::Database

Auto Trait Implementations

impl<C> !RefUnwindSafe for Pool<C>

impl<C> Send for Pool<C> where
    C: Send

impl<C> Sync for Pool<C> where
    C: Send

impl<C> Unpin for Pool<C>

impl<C> !UnwindSafe for Pool<C>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<'_, T, DB> HasSqlType<&'_ T> for DB where
    DB: HasSqlType<T>,
    T: ?Sized
[src]

impl<T, DB> HasSqlType<Option<T>> for DB where
    DB: HasSqlType<T>, 
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,