Returns a referece to the inner running `environmentd` [`crate::Server`]`.
(&self)
| 1269 | |
| 1270 | /// Returns a referece to the inner running `environmentd` [`crate::Server`]`. |
| 1271 | pub fn inner(&self) -> &crate::Server { |
| 1272 | &self.server.inner |
| 1273 | } |
| 1274 | |
| 1275 | /// Connect to the __public__ SQL port of the running `environmentd` server. |
| 1276 | pub fn connect<T>(&self, tls: T) -> Result<postgres::Client, postgres::Error> |