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: StatementCaches
StatementCaches
of Client
s handed out by the Pool
.
Implementations§
source§impl Manager
impl Manager
sourcepub fn new<T>(pg_config: Config, tls: T) -> Selfwhere
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) -> Selfwhere
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) -> Selfwhere
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) -> Selfwhere
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
.
sourcepub fn from_connect(
pg_config: Config,
connect: impl Connect + 'static,
config: ManagerConfig
) -> Self
pub fn from_connect( pg_config: Config, connect: impl Connect + 'static, config: ManagerConfig ) -> Self
Create a new Manager
using the given tokio_postgres::Config
, and
connect
impl and ManagerConfig
.
Trait Implementations§
source§impl Manager for Manager
impl Manager for Manager
§type Type = ClientWrapper
type Type = ClientWrapper
source§async fn create(&self) -> Result<ClientWrapper, Error>
async fn create(&self) -> Result<ClientWrapper, Error>
Creates a new instance of
Manager::Type
.source§async fn recycle(
&self,
client: &mut ClientWrapper,
_: &Metrics
) -> RecycleResult<Error>
async fn recycle( &self, client: &mut ClientWrapper, _: &Metrics ) -> RecycleResult<Error>
Tries to recycle an instance of
Manager::Type
. Read moresource§fn detach(&self, object: &mut ClientWrapper)
fn detach(&self, object: &mut ClientWrapper)
Auto Trait Implementations§
impl !Freeze for Manager
impl !RefUnwindSafe for Manager
impl Send for Manager
impl Sync for Manager
impl Unpin for Manager
impl !UnwindSafe for Manager
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more