Struct deadpool_postgres::ManagerConfig
source · pub struct ManagerConfig {
pub recycling_method: RecyclingMethod,
}
Expand description
Configuration object for a Manager
.
This currently only makes it possible to specify which RecyclingMethod
should be used when retrieving existing objects from the Pool
.
Fields§
§recycling_method: RecyclingMethod
Method of how a connection is recycled. See RecyclingMethod
.
Trait Implementations§
source§impl Clone for ManagerConfig
impl Clone for ManagerConfig
source§fn clone(&self) -> ManagerConfig
fn clone(&self) -> ManagerConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ManagerConfig
impl Debug for ManagerConfig
source§impl Default for ManagerConfig
impl Default for ManagerConfig
source§fn default() -> ManagerConfig
fn default() -> ManagerConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ManagerConfig
impl<'de> Deserialize<'de> for ManagerConfig
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ManagerConfig
impl RefUnwindSafe for ManagerConfig
impl Send for ManagerConfig
impl Sync for ManagerConfig
impl Unpin for ManagerConfig
impl UnwindSafe for ManagerConfig
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