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
sourceimpl Clone for ManagerConfig
impl Clone for ManagerConfig
sourcefn clone(&self) -> ManagerConfig
fn clone(&self) -> ManagerConfig
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ManagerConfig
impl Debug for ManagerConfig
sourceimpl Default for ManagerConfig
impl Default for ManagerConfig
sourcefn default() -> ManagerConfig
fn default() -> ManagerConfig
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ManagerConfig
impl<'de> Deserialize<'de> for ManagerConfig
sourcefn 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
sourceimpl Serialize for ManagerConfig
impl Serialize for ManagerConfig
Auto Trait Implementations
impl RefUnwindSafe for ManagerConfig
impl Send for ManagerConfig
impl Sync for ManagerConfig
impl Unpin for ManagerConfig
impl UnwindSafe for ManagerConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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