Set the user for the pgwire connection.
(mut self, user: &str)
| 1097 | |
| 1098 | /// Set the user for the pgwire connection. |
| 1099 | pub fn user(mut self, user: &str) -> Self { |
| 1100 | self.pg_config.user(user); |
| 1101 | self |
| 1102 | } |
| 1103 | |
| 1104 | /// Set the password for the pgwire connection. |
| 1105 | pub fn password(mut self, password: &str) -> Self { |
no outgoing calls
no test coverage detected