Set the minimum number of connections of the pool
(&mut self, value: u32)
| 221 | |
| 222 | /// Set the minimum number of connections of the pool |
| 223 | pub fn min_connections(&mut self, value: u32) -> &mut Self { |
| 224 | self.min_connections = Some(value); |
| 225 | self |
| 226 | } |
| 227 | |
| 228 | /// Get the minimum number of connections of the pool, if set |
| 229 | pub fn get_min_connections(&self) -> Option<u32> { |
no outgoing calls
no test coverage detected