[]Struct amitu_base::DIESEL_POOL

pub struct DIESEL_POOL { /* fields omitted */ }

Methods from Deref<Target = Pool<ConnectionManager<PgConnection>>>

pub fn get(&self) -> Result<PooledConnection<M>, Error>[src]

Retrieves a connection from the pool.

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

pub fn get_timeout(
    &self,
    timeout: Duration
) -> Result<PooledConnection<M>, Error>
[src]

Retrieves a connection from the pool, waiting for at most timeout

The given timeout will be used instead of the configured connection timeout.

pub fn try_get(&self) -> Option<PooledConnection<M>>[src]

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

Returns None if there are no idle connections available in the pool. This method will not block waiting to establish a new connection.

pub fn state(&self) -> State[src]

Returns information about the current state of the pool.

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

Returns the configured maximum pool size.

pub fn min_idle(&self) -> Option<u32>[src]

Returns the configured mimimum idle connection count.

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

Returns if the pool is configured to test connections on check out.

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.

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

Returns the configured connection timeout.

Trait Implementations

impl Deref for DIESEL_POOL

type Target = Pool<ConnectionManager<PgConnection>>

The resulting type after dereferencing.

impl LazyStatic for DIESEL_POOL

Auto Trait Implementations

Blanket Implementations

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> IntoSql for T[src]

impl<T> Any for T where
    T: Any

impl<T> Erased for T

impl<T> Erased for T