Skip to main content

DBConnectionManager

Struct DBConnectionManager 

Source
pub struct DBConnectionManager<D: Driver> { /* private fields */ }
Expand description

The Manager that backs every Tank connection pool.

A manager holds the Driver and the database URL; it knows how to open new connections on demand and how to validate recycled ones. You do not need to construct or interact with this type directly, it is created internally by Driver::connect_pool.

Implementations§

Source§

impl<D: Driver> DBConnectionManager<D>

Source

pub fn new(driver: D, url: Cow<'static, str>) -> Self

Trait Implementations§

Source§

impl<D: Debug + Driver> Debug for DBConnectionManager<D>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<D: Driver> Manager for DBConnectionManager<D>

Source§

type Type = <D as Driver>::Connection

Type of super::Objects that this Manager creates and recycles.
Source§

type Error = Error

Error that this Manager can return when creating and/or recycling super::Objects.
Source§

async fn create(&self) -> Result<Self::Type>

Creates a new instance of Manager::Type.
Source§

fn recycle( &self, _: &mut Self::Type, _: &Metrics, ) -> impl Future<Output = RecycleResult<Self::Error>> + Send

Tries to recycle an instance of Manager::Type. Read more
Source§

fn detach(&self, _obj: &mut Self::Type)

Detaches an instance of Manager::Type from this Manager. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.