Struct deadpool_postgres::Manager
source · [−]pub struct Manager {
pub statement_caches: StatementCaches,
/* private fields */
}Expand description
Manager for creating and recycling PostgreSQL connections.
Fields
statement_caches: StatementCachesStatementCaches of Clients handed out by the Pool.
Implementations
sourceimpl Manager
impl Manager
sourcepub fn new<T>(pg_config: Config, tls: T) -> Self where
T: MakeTlsConnect<Socket> + Clone + Sync + Send + 'static,
T::Stream: Sync + Send,
T::TlsConnect: Sync + Send,
<T::TlsConnect as TlsConnect<Socket>>::Future: Send,
pub fn new<T>(pg_config: Config, tls: T) -> Self where
T: MakeTlsConnect<Socket> + Clone + Sync + Send + 'static,
T::Stream: Sync + Send,
T::TlsConnect: Sync + Send,
<T::TlsConnect as TlsConnect<Socket>>::Future: Send,
Creates a new Manager using the given tokio_postgres::Config and
tls connector.
sourcepub fn from_config<T>(pg_config: Config, tls: T, config: ManagerConfig) -> Self where
T: MakeTlsConnect<Socket> + Clone + Sync + Send + 'static,
T::Stream: Sync + Send,
T::TlsConnect: Sync + Send,
<T::TlsConnect as TlsConnect<Socket>>::Future: Send,
pub fn from_config<T>(pg_config: Config, tls: T, config: ManagerConfig) -> Self where
T: MakeTlsConnect<Socket> + Clone + Sync + Send + 'static,
T::Stream: Sync + Send,
T::TlsConnect: Sync + Send,
<T::TlsConnect as TlsConnect<Socket>>::Future: Send,
Create a new Manager using the given tokio_postgres::Config, and
tls connector and ManagerConfig.
Trait Implementations
sourceimpl Manager for Manager
impl Manager for Manager
type Type = ClientWrapper
type Type = ClientWrapper
sourcefn create<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<ClientWrapper, Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
fn create<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<ClientWrapper, Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Creates a new instance of Manager::Type.
sourcefn recycle<'life0, 'life1, 'async_trait>(
&'life0 self,
client: &'life1 mut ClientWrapper
) -> Pin<Box<dyn Future<Output = RecycleResult<Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
fn recycle<'life0, 'life1, 'async_trait>(
&'life0 self,
client: &'life1 mut ClientWrapper
) -> Pin<Box<dyn Future<Output = RecycleResult<Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait,
Tries to recycle an instance of Manager::Type. Read more
sourcefn detach(&self, object: &mut ClientWrapper)
fn detach(&self, object: &mut ClientWrapper)
Detaches an instance of Manager::Type from this Manager. Read more
Auto Trait Implementations
impl !RefUnwindSafe for Manager
impl Send for Manager
impl Sync for Manager
impl Unpin for Manager
impl !UnwindSafe for Manager
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more