(mut self, url: impl Into<String>)
| 616 | /// Create a new configuration with a database URL. |
| 617 | #[must_use] |
| 618 | pub fn with_database_url(mut self, url: impl Into<String>) -> Self { |
| 619 | self.database_url = url.into(); |
| 620 | self |
| 621 | } |
| 622 | |
| 623 | /// Create a new configuration with the configured compute drivers. |
| 624 | #[must_use] |
no outgoing calls