pub trait PoolTypeTrait: Send + Sync {
// Required method
fn pool_type(&self) -> PoolType;
}Expand description
Interface for pool operations, implemented by all pool types (V2, V3, etc.)
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".