(mut self, username: &str, password: &str)
| 345 | } |
| 346 | |
| 347 | fn basic_auth(mut self, username: &str, password: &str) -> Proxy { |
| 348 | self.intercept.set_basic_auth(username, password); |
| 349 | self |
| 350 | } |
| 351 | |
| 352 | pub async fn connect<'t, T>( |
| 353 | self, |
no test coverage detected