pub struct PoolConfig {
pub max_size: usize,
pub timeout: Option<Duration>,
pub runtime: Option<Runtime>,
}Available on crate feature
unmanaged only.Expand description
Pool configuration.
Fields§
§max_size: usizeMaximum size of the pool.
timeout: Option<Duration>Timeout for Pool::get() operation.
runtime: Option<Runtime>Runtime to be used.
§Important
The Runtime is optional. Most Pools don’t need a Runtime.
If you want to utilize a timeout, however, a Runtime must be
specified as you will otherwise get a PoolError::NoRuntimeSpecified
when trying to use Pool::timeout_get() or Pool::get() with a
PoolConfig::timeout configured.
Implementations§
Source§impl PoolConfig
impl PoolConfig
Sourcepub fn new(max_size: usize) -> Self
pub fn new(max_size: usize) -> Self
Create a new PoolConfig without any timeouts.
Trait Implementations§
Source§impl Clone for PoolConfig
impl Clone for PoolConfig
Source§fn clone(&self) -> PoolConfig
fn clone(&self) -> PoolConfig
Returns a duplicate 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 PoolConfig
impl Debug for PoolConfig
Source§impl Default for PoolConfig
impl Default for PoolConfig
Source§fn default() -> Self
fn default() -> Self
Create a PoolConfig where PoolConfig::max_size is set to
cpu_core_count * 2 including logical cores (Hyper-Threading).
Source§impl<'de> Deserialize<'de> for PoolConfig
impl<'de> Deserialize<'de> for PoolConfig
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
Source§impl Serialize for PoolConfig
impl Serialize for PoolConfig
impl Copy for PoolConfig
Auto Trait Implementations§
impl Freeze for PoolConfig
impl RefUnwindSafe for PoolConfig
impl Send for PoolConfig
impl Sync for PoolConfig
impl Unpin for PoolConfig
impl UnwindSafe for PoolConfig
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