Default database encoded in [`PgliteServer::database_url`].
(mut self, database: impl Into<String>)
| 266 | |
| 267 | /// Default database encoded in [`PgliteServer::database_url`]. |
| 268 | pub fn database(mut self, database: impl Into<String>) -> Self { |
| 269 | self.startup_config.database = database.into(); |
| 270 | self |
| 271 | } |
| 272 | |
| 273 | /// Enable PostgreSQL debug logging level `0..=5` for server backends. |
| 274 | pub fn debug_level(mut self, level: DebugLevel) -> Self { |
no outgoing calls