[−][src]Struct r2d2::Pool
A generic connection pool.
Methods
impl<M> Pool<M> where
M: ManageConnection,
[src]
impl<M> Pool<M> where
M: ManageConnection,
pub fn new(manager: M) -> Result<Pool<M>, Error>
[src]
pub fn new(manager: M) -> Result<Pool<M>, Error>
Creates a new connection pool with a default configuration.
pub fn builder() -> Builder<M>
[src]
pub fn builder() -> Builder<M>
Returns a builder type to configure a new pool.
pub fn get(&self) -> Result<PooledConnection<M>, Error>
[src]
pub fn get(&self) -> Result<PooledConnection<M>, Error>
Retrieves a connection from the pool.
Waits for at most the configured connection timeout before returning an error.
pub fn try_get(&self) -> Option<PooledConnection<M>>
[src]
pub fn try_get(&self) -> Option<PooledConnection<M>>
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]
pub fn state(&self) -> State
Returns information about the current state of the pool.
pub fn max_size(&self) -> u32
[src]
pub fn max_size(&self) -> u32
Returns the configured maximum pool size.
pub fn min_idle(&self) -> Option<u32>
[src]
pub fn min_idle(&self) -> Option<u32>
Returns the configured mimimum idle connection count.
pub fn test_on_check_out(&self) -> bool
[src]
pub fn test_on_check_out(&self) -> bool
Returns if the pool is configured to test connections on check out.
pub fn max_lifetime(&self) -> Option<Duration>
[src]
pub fn max_lifetime(&self) -> Option<Duration>
Returns the configured maximum connection lifetime.
pub fn idle_timeout(&self) -> Option<Duration>
[src]
pub fn idle_timeout(&self) -> Option<Duration>
Returns the configured idle connection timeout.
pub fn connection_timeout(&self) -> Duration
[src]
pub fn connection_timeout(&self) -> Duration
Returns the configured connection timeout.
Trait Implementations
impl<M> Clone for Pool<M> where
M: ManageConnection,
[src]
impl<M> Clone for Pool<M> where
M: ManageConnection,
Returns a new Pool
referencing the same state as self
.
fn clone(&self) -> Pool<M>
[src]
fn clone(&self) -> Pool<M>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<M> Debug for Pool<M> where
M: ManageConnection + Debug,
[src]
impl<M> Debug for Pool<M> where
M: ManageConnection + Debug,
Auto Trait Implementations
impl<M> Send for Pool<M> where
<M as ManageConnection>::Connection: Send,
impl<M> Send for Pool<M> where
<M as ManageConnection>::Connection: Send,
impl<M> Sync for Pool<M> where
<M as ManageConnection>::Connection: Send,
impl<M> Sync for Pool<M> where
<M as ManageConnection>::Connection: Send,
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more