(mut self, path: impl Into<PathBuf>)
| 234 | /// Bind the server to a Unix-domain socket path. |
| 235 | #[cfg(unix)] |
| 236 | pub fn unix(mut self, path: impl Into<PathBuf>) -> Self { |
| 237 | self.endpoint = ServerEndpointConfig::Unix(path.into()); |
| 238 | self |
| 239 | } |
| 240 | |
| 241 | /// Set a PostgreSQL startup GUC for the embedded backend used by this |
| 242 | /// server. |
no outgoing calls
no test coverage detected