(mut self, postgres_config: PostgresConfig)
| 216 | } |
| 217 | |
| 218 | pub(crate) fn with_postgres_config(mut self, postgres_config: PostgresConfig) -> Self { |
| 219 | self.postgres_config = Arc::new(postgres_config); |
| 220 | self |
| 221 | } |
| 222 | |
| 223 | pub(crate) fn with_startup_config(mut self, startup_config: StartupConfig) -> Self { |
| 224 | self.startup_config = Arc::new(startup_config); |